• beryllium 0.9.0/src/error.rs
    9
    #[repr(transparent)]
    10
    #[allow(clippy::box_collection)]
    11
    pub struct SdlError(Box<String>);
  • chttp 0.5.5/src/io.rs
    11
    pub struct Text<'r, R: Unpin> {
    12
        #[allow(clippy::box_vec)]
    13
        buffer: Option<Box<Vec<u8>>>,
  • crymap 1.0.1/src/support/small_bitset.rs
    39
        near: u64,
    40
        #[allow(clippy::box_vec)]
    41
        far: Option<Box<Vec<u64>>>,
  • error-stack 0.2.4/src/report.rs
    200
        // a good trade-off.
    201
        #[allow(clippy::box_collection)]
    202
        pub(super) frames: Box<Vec<Frame>>,
  • jex 0.2.0/src/jq/query.rs
    24
        // We want to make sure the vec pointer doesn't move, so we can keep pushing to it.
    25
        #[allow(clippy::box_vec)]
    26
        errors: Box<Vec<JVRaw>>,
  • lib-ruby-parser 4.0.4+ruby-3.1.1/src/parse_value.rs
    75
    #[allow(non_snake_case)]
    76
    #[allow(clippy::box_collection)]
    77
    pub(crate) mod BoxedNodeList {
    511
    #[allow(clippy::box_collection)]
    512
    #[derive(Clone, Debug)]
  • lodepng 3.7.2/src/ffi.rs
    278
        /// Must be boxed for FFI hack.
    279
        #[allow(clippy::box_collection)]
    280
        pub(crate) unknown_chunks: [Box<Vec<u8>>; 3],
  • mmtk 0.16.0/src/plan/mutator_context.rs
    23
        /// Put this behind a box, so it is a pointer-sized field.
    24
        #[allow(clippy::box_collection)]
    25
        pub space_mapping: Box<SpaceMapping<VM>>,
  • mmtk 0.16.0/tests/test_roots_work_factory.rs
    38
        v: String,
    39
        #[allow(clippy::box_collection)] // for testing `Box` inside a factory
    40
        b: Box<String>,
  • near-sdk 4.1.1/src/environment/mock/mocked_blockchain.rs
    43
        memory: Box<dyn MemoryLike>,
    44
        #[allow(clippy::box_collection)]
    45
        promise_results: Box<Vec<VmPromiseResult>>,
  • nesdie 0.2.0/src/mock/mocked_blockchain.rs
    60
        memory: Box<dyn MemoryLike>,
    61
        #[allow(clippy::box_collection)]
    62
        promise_results: Box<Vec<VmPromiseResult>>,
  • ntex-io 0.2.9/src/io.rs
    67
        pub(super) handle: Cell<Option<Box<dyn Handle>>>,
    68
        #[allow(clippy::box_collection)]
    69
        pub(super) on_disconnect: Cell<Option<Box<Vec<LocalWaker>>>>,
  • sea-query 0.28.3/src/value.rs
    138
        #[allow(clippy::box_collection)]
    139
        Bytes(Option<Box<Vec<u8>>>),
  • skim 0.10.2/src/helper/item.rs
    29
        // Option<Box<_>> to reduce memory use in normal cases where no matching ranges are specified.
    30
        #[allow(clippy::box_collection)]
    31
        matching_ranges: Option<Box<Vec<(usize, usize)>>>,
  • skim-qkzk 0.9.9/src/helper/item.rs
    29
        // Option<Box<_>> to reduce memory use in normal cases where no matching ranges are specified.
    30
        #[allow(clippy::box_vec)]
    31
        matching_ranges: Option<Box<Vec<(usize, usize)>>>,
  • sycamore-reactive 0.8.1/src/lib.rs
    48
        /// size of the [`ScopeInner`] struct when most of the times, this field is unneeded.
    49
        #[allow(clippy::box_collection)]
    50
        contexts: Option<Box<AHashMap<TypeId, &'a dyn Any>>>,
  • versionize 0.1.9/src/primitives.rs
    581
            _enums: Vec<CompatibleEnum>,
    582
            #[allow(clippy::box_collection)] // we want to test boxes explicitly
    583
            _box: Box<String>,
  • versionize 0.1.9/tests/test.rs
    153
            vec_1: Vec<char>,
    154
            #[allow(clippy::box_collection)] // we want to explicitly test Box
    155
            box_1: Box<String>,
  • wayland-backend 0.1.0/src/protocol.rs
    45
    #[derive(Debug, Clone)]
    46
    #[allow(clippy::box_collection)]
    47
    pub enum Argument<Id, Fd> {
  • wayland-commons 0.29.5/src/wire.rs
    54
    #[derive(Clone, PartialEq, Debug)]
    55
    #[allow(clippy::box_collection)]
    56
    pub enum Argument {
  • wlambda 0.8.1/src/compiler.rs
    905
    #[derive(Debug, Clone)]
    906
    #[allow(clippy::box_collection)]
    907
    struct BlockEnv {
  • wlambda 0.8.1/src/ops.rs
    830
    #[derive(Debug,Clone)]
    831
    #[allow(clippy::box_collection)]
    832
    pub(crate) enum Builtin {
    888
    #[allow(clippy::box_collection)]
    889
    #[derive(Debug,Clone)]
  • zspell 0.3.3/src/dict/types.rs
    50
    /// Source information
    51
    #[allow(clippy::box_collection)]
    52
    #[non_exhaustive]
  • base64-serde 0.7.0/tests/tests.rs
    1
    #![allow(clippy::box_collection)]
  • ibuilder 0.1.8/tests/random.rs
    1
    #![allow(clippy::box_vec, clippy::type_complexity)]
  • rhai 1.12.0/src/lib.rs
    77
    #![allow(clippy::module_inception)]
    78
    #![allow(clippy::box_collection)]
    79
    #![allow(clippy::too_many_arguments)]
  • ts-rs 6.2.1/tests/generic_fields.rs
    1
    #![allow(dead_code, clippy::box_collection)]