#![warn(clippy::unwrap_used, clippy::expect_used)] trait OptionExt { type Item; fn unwrap_err(self) -> Self::Item; fn expect_err(self, msg: &str) -> Self::Item; } impl OptionExt for Option { type Item = T; fn unwrap_err(self) -> T { panic!(); } fn expect_err(self, msg: &str) -> T { panic!(); } } fn main() { Some(3).unwrap(); Some(3).expect("Hello world!"); // Don't trigger on unwrap_err on an option Some(3).unwrap_err(); Some(3).expect_err("Hellow none!"); let a: Result = Ok(3); a.unwrap(); a.expect("Hello world!"); a.unwrap_err(); a.expect_err("Hello error!"); }