Phillip Klein

Results 1 comments of Phillip Klein

Additionally ``` if my_option.is_none() { println!("{:?}", my_option.unwrap()); } ``` triggers in clippy: ``` help: remove the `None` and `unwrap()` ``` triggers in me: ``` if my_option.is_none() { println!("{:?}", my_option); }...