• amfnengine 0.3.5/src/engine/list_locale.rs
    719
        /// * See description.
    720
        #[allow(clippy::manual_unwrap_or)]
  • granite 1.1.1/src/list/sparse.rs
    513
        // Uncomment if ever needed
    514
        #[allow(clippy::manual_unwrap_or)] // stupid clippy not realizing we're in a const fn
    515
        const fn new_hole(val: Option<usize>) -> Self {
  • naga 0.11.0/src/back/dot/mod.rs
    263
    #[allow(clippy::manual_unwrap_or)]
    264
    fn name(option: &Option<String>) -> &str {
  • ya-gcp 0.7.7/src/grpc/status_code_set.rs
    58
        const fn code_to_bit(code: tonic::Code) -> BitSet {
    59
            #[allow(clippy::manual_unwrap_or)] // must be manual because unwrap_or is not const
    60
            match u32::checked_shl(1, code as u32) {
  • clapi 0.1.2/src/arg_count.rs
    1
    #![allow(clippy::manual_unwrap_or)]
    2
    use std::collections::Bound;
  • google-cognitive-apis 0.2.1/src/api/rest/google/cloud/speechtotext/v1.rs
    1
    #![allow(clippy::from_over_into)]
    2
    #![allow(clippy::manual_unwrap_or)]
    3
    #![allow(clippy::manual_map)]
  • google-cognitive-apis 0.2.1/src/api/rest/google/cloud/speechtotext/v1p1beta1.rs
    1
    #![allow(clippy::from_over_into)]
    2
    #![allow(clippy::manual_unwrap_or)]
    3
    #![allow(clippy::manual_map)]
  • ux-dx 0.2.1/src/lib.rs
    57
        clippy::borrowed_box,
    58
        clippy::manual_unwrap_or,
    59
        clippy::collapsible_else_if,