• abi_stable 0.11.1/src/library/lib_header.rs
    354
    // This type will never have new fields clippy, that's the point <_<
    355
    #[allow(clippy::manual_non_exhaustive)]
    356
    pub struct AbiHeader {
  • aggligator 0.3.1/src/cfg.rs
    37
    #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
    38
    #[allow(clippy::manual_non_exhaustive)]
    39
    pub struct Cfg {
  • async-codec-lite 0.0.2/src/framed/mod.rs
    164
    #[derive(Debug)]
    165
    #[allow(clippy::manual_non_exhaustive)]
    166
    pub struct FramedParts<T, U> {
  • build-probe-mpi 0.1.2/src/lib.rs
    35
    /// Result of a successfull probe
    36
    #[allow(clippy::manual_non_exhaustive)]
    37
    #[derive(Clone, Debug)]
  • caps 0.5.5/src/lib.rs
    66
    /// POSIX and custom ones. See `capabilities(7)`.
    67
    #[allow(clippy::manual_non_exhaustive)]
    68
    #[allow(non_camel_case_types)]
  • cortex-m 0.7.7/src/peripheral/mod.rs
    95
    #[allow(non_snake_case)]
    96
    #[allow(clippy::manual_non_exhaustive)]
    97
    pub struct Peripherals {
  • ctest2 0.4.5/src/lib.rs
    63
    #[derive(Debug)]
    64
    #[allow(clippy::manual_non_exhaustive)] // FIXME: Use `#[non_exhaustive]` in the future.
    65
    pub enum VolatileItemKind {
  • docbot-derive 0.3.0-alpha.2/inputs/command.rs
    9
    #[allow(clippy::manual_non_exhaustive)]
    10
    pub struct Command<'a> {
  • docbot-derive 0.3.0-alpha.2/inputs/field.rs
    22
    #[allow(clippy::manual_non_exhaustive)]
    23
    pub struct FieldInfo<'a> {
  • filmborders 0.0.32/src/types/rect.rs
    23
        #[derive(Serialize, PartialEq, Eq, Clone, Copy)]
    24
        #[allow(clippy::manual_non_exhaustive)]
    25
        pub struct Rect {
  • futures-codec2 0.1.0/src/framed.rs
    264
    #[derive(Debug)]
    265
    #[allow(clippy::manual_non_exhaustive)]
    266
    pub struct FramedParts<T, U> {
  • git-nomad 0.6.0/src/snapshot.rs
    6
    /// and thus is scoped under a specific [`User`].
    7
    #[allow(clippy::manual_non_exhaustive)]
    8
    pub struct Snapshot<'a, Ref> {
  • hreq-h2 0.2.7/src/tokio_codec/framed.rs
    284
    #[derive(Debug)]
    285
    #[allow(clippy::manual_non_exhaustive)]
    286
    pub struct FramedParts<T, U> {
  • libp2prs-noise 0.3.0/src/error.rs
    26
    #[derive(Debug)]
    27
    #[allow(clippy::manual_non_exhaustive)]
    28
    pub enum NoiseError {
  • minreq 2.6.0/src/native_tls/mod.rs
    196
    #[derive(Debug, Copy, Clone)]
    197
    #[allow(dead_code, clippy::manual_non_exhaustive)]
    198
    pub enum Protocol {
  • nephele 0.0.2/src/common/codec/framed.rs
    168
    #[derive(Debug)]
    169
    #[allow(clippy::manual_non_exhaustive)]
    170
    pub struct FramedParts<T, U> {
  • opentok 1.0.4/src/enums.rs
    6
    #[must_use]
    7
    #[allow(clippy::manual_non_exhaustive)]
    8
    pub enum OtcError {
  • plonky2 0.1.1/src/iop/target.rs
    52
    #[derive(Copy, Clone, Debug)]
    53
    #[allow(clippy::manual_non_exhaustive)]
    54
    pub struct BoolTarget {
  • rand_jitter 0.3.0/src/error.rs
    23
    #[repr(u32)]
    24
    #[allow(clippy::manual_non_exhaustive)]
    25
    //^ TODO: Replace with `#[non_exhaustive]` for Rust >= 1.40
  • rofi-plugin-sys 0.1.0/src/types.rs
    12
    /// The type of a property.
    13
    #[allow(clippy::manual_non_exhaustive)] // count variant is not for that
    14
    #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
  • ruma-common 0.10.5/src/events/room/encrypted.rs
    83
    #[derive(Clone, Debug)]
    84
    #[allow(clippy::manual_non_exhaustive)]
    85
    #[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
  • ruma-common 0.10.5/src/events/room/message.rs
    562
    #[derive(Clone, Debug)]
    563
    #[allow(clippy::manual_non_exhaustive)]
    564
    #[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
  • ruma-events 0.26.1/src/room/encrypted.rs
    85
    #[derive(Clone, Debug)]
    86
    #[allow(clippy::manual_non_exhaustive)]
    87
    #[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
  • ruma-events 0.26.1/src/room/message.rs
    335
    #[derive(Clone, Debug)]
    336
    #[allow(clippy::manual_non_exhaustive)]
    337
    #[cfg_attr(not(feature = "unstable-exhaustive-types"), non_exhaustive)]
  • tokio-util 0.7.4/src/codec/framed.rs
    339
    #[derive(Debug)]
    340
    #[allow(clippy::manual_non_exhaustive)]
    341
    pub struct FramedParts<T, U> {
  • tokio-util_wasi 0.7.4/src/codec/framed.rs
    339
    #[derive(Debug)]
    340
    #[allow(clippy::manual_non_exhaustive)]
    341
    pub struct FramedParts<T, U> {
  • worker-plus-sys 0.0.8/src/request_init.rs
    89
    #[allow(clippy::manual_non_exhaustive)]
    90
    #[wasm_bindgen]
  • worker-sys 0.0.6/src/request_init.rs
    89
    #[allow(clippy::manual_non_exhaustive)]
    90
    #[wasm_bindgen]
  • apollo-parser 0.4.1/src/parser/generated/syntax_kind.rs
    7
        unreachable_pub,
    8
        clippy::manual_non_exhaustive,
    9
        clippy::upper_case_acronyms
  • battery 0.7.8/src/lib.rs
    25
    #![deny(bare_trait_objects)]
    26
    #![allow(clippy::manual_non_exhaustive)]  // MSRV is 1.36
    27
    #![doc(html_root_url = "https://docs.rs/battery/0.7.8")]
  • del-gl 0.1.2/src/lib.rs
    2
        #![allow(
    3
        clippy::manual_non_exhaustive,
    4
        clippy::too_many_arguments,
  • gcloud-sdk 0.19.15/src/rest_apis/mod.rs
    6
        clippy::derive_partial_eq_without_eq,
    7
        clippy::manual_non_exhaustive
    8
    )] // for generated files
  • glutin_egl_sys 0.3.1/src/lib.rs
    11
    #![allow(clippy::missing_safety_doc)]
    12
    #![allow(clippy::manual_non_exhaustive)]
    13
    #![allow(clippy::unnecessary_cast)]
  • glutin_gles2_sys 0.3.0/src/lib.rs
    3
    #![allow(clippy::missing_safety_doc)]
    4
    #![allow(clippy::manual_non_exhaustive)]
    5
    #![allow(clippy::unnecessary_cast)]
  • glutin_glx_sys 0.3.0/src/lib.rs
    8
    #![allow(clippy::missing_safety_doc)]
    9
    #![allow(clippy::manual_non_exhaustive)]
    10
    #![allow(clippy::unused_unit)]
  • glutin_wgl_sys 0.3.0/src/lib.rs
    3
    #![allow(clippy::missing_safety_doc)]
    4
    #![allow(clippy::manual_non_exhaustive)]
    5
    #![allow(clippy::unnecessary_cast)]
  • log4rs 1.2.0/src/lib.rs
    186
    #![allow(where_clauses_object_safety, clippy::manual_non_exhaustive)]
    187
    #![warn(missing_docs)]
  • mun_syntax 0.4.0/src/syntax_kind/generated.rs
    9
        unreachable_pub,
    10
        clippy::manual_non_exhaustive,
    11
        clippy::upper_case_acronyms
  • nng 1.0.1/src/lib.rs
    164
    #![allow(clippy::enum_glob_use)] // Same as wildcards
    165
    #![allow(clippy::manual_non_exhaustive)] // Not available in v1.36
  • poise 0.5.2/src/lib.rs
    7
    // native #[non_exhaustive] is awful because you can't do struct update syntax with it (??)
    8
    #![allow(clippy::manual_non_exhaustive)]
  • rust-tdlib 0.4.1/src/lib.rs
    44
        clippy::field_reassign_with_default,
    45
        clippy::manual_non_exhaustive
    46
    )]
  • security-framework 2.8.2/src/lib.rs
    3
    #![allow(non_upper_case_globals)]
    4
    #![allow(clippy::manual_non_exhaustive)] // MSRV
  • starship-battery 0.7.9/src/lib.rs
    25
    #![deny(bare_trait_objects)]
    26
    #![allow(clippy::manual_non_exhaustive)] // MSRV is 1.36
    27
    #![doc(html_root_url = "https://docs.rs/starship-battery/0.7.9")]
  • target-tuples 0.5.11/src/pieces.rs
    2
        clippy::upper_case_acronyms,
    3
        clippy::manual_non_exhaustive,
    4
        clippy::match_like_matches_macro
  • uapi 0.2.10/src/lib.rs
    3
        clippy::or_fun_call,
    4
        clippy::manual_non_exhaustive,
    5
        clippy::needless_lifetimes
  • worker-plus-sys 0.0.8/src/lib.rs
    1
    #![allow(clippy::manual_non_exhaustive)]
  • worker-sys 0.0.6/src/lib.rs
    1
    #![allow(clippy::manual_non_exhaustive)]
  • yarte_html 0.15.2/src/interface.rs
    12
    //! It can be used by a parser to create the DOM graph structure in memory.
    13
    #![allow(clippy::manual_non_exhaustive)]
    14
    use std::{borrow::Cow, fmt, ops::Deref};