9 |
#[repr(transparent)]
|
10 |
#[allow(clippy::box_collection)]
|
11 |
pub struct SdlError(Box<String>);
|
11 |
pub struct Text<'r, R: Unpin> {
|
12 |
#[allow(clippy::box_vec)]
|
13 |
buffer: Option<Box<Vec<u8>>>,
|
39 |
near: u64,
|
40 |
#[allow(clippy::box_vec)]
|
41 |
far: Option<Box<Vec<u64>>>,
|
200 |
// a good trade-off.
|
201 |
#[allow(clippy::box_collection)]
|
202 |
pub(super) frames: Box<Vec<Frame>>,
|
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>>,
|
75 |
#[allow(non_snake_case)]
|
76 |
#[allow(clippy::box_collection)]
|
77 |
pub(crate) mod BoxedNodeList {
|
511 |
#[allow(clippy::box_collection)]
|
512 |
#[derive(Clone, Debug)]
|
278 |
/// Must be boxed for FFI hack.
|
279 |
#[allow(clippy::box_collection)]
|
280 |
pub(crate) unknown_chunks: [Box<Vec<u8>>; 3],
|
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>>,
|
38 |
v: String,
|
39 |
#[allow(clippy::box_collection)] // for testing `Box` inside a factory
|
40 |
b: Box<String>,
|
43 |
memory: Box<dyn MemoryLike>,
|
44 |
#[allow(clippy::box_collection)]
|
45 |
promise_results: Box<Vec<VmPromiseResult>>,
|
60 |
memory: Box<dyn MemoryLike>,
|
61 |
#[allow(clippy::box_collection)]
|
62 |
promise_results: Box<Vec<VmPromiseResult>>,
|
67 |
pub(super) handle: Cell<Option<Box<dyn Handle>>>,
|
68 |
#[allow(clippy::box_collection)]
|
69 |
pub(super) on_disconnect: Cell<Option<Box<Vec<LocalWaker>>>>,
|
138 |
#[allow(clippy::box_collection)]
|
139 |
Bytes(Option<Box<Vec<u8>>>),
|
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)>>>,
|
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)>>>,
|
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>>>,
|
581 |
_enums: Vec<CompatibleEnum>,
|
582 |
#[allow(clippy::box_collection)] // we want to test boxes explicitly
|
583 |
_box: Box<String>,
|
153 |
vec_1: Vec<char>,
|
154 |
#[allow(clippy::box_collection)] // we want to explicitly test Box
|
155 |
box_1: Box<String>,
|
45 |
#[derive(Debug, Clone)]
|
46 |
#[allow(clippy::box_collection)]
|
47 |
pub enum Argument<Id, Fd> {
|
54 |
#[derive(Clone, PartialEq, Debug)]
|
55 |
#[allow(clippy::box_collection)]
|
56 |
pub enum Argument {
|
905 |
#[derive(Debug, Clone)]
|
906 |
#[allow(clippy::box_collection)]
|
907 |
struct BlockEnv {
|
830 |
#[derive(Debug,Clone)]
|
831 |
#[allow(clippy::box_collection)]
|
832 |
pub(crate) enum Builtin {
|
888 |
#[allow(clippy::box_collection)]
|
889 |
#[derive(Debug,Clone)]
|
50 |
/// Source information
|
51 |
#[allow(clippy::box_collection)]
|
52 |
#[non_exhaustive]
|
1 |
#![allow(clippy::box_collection)]
|
1 |
#![allow(clippy::box_vec, clippy::type_complexity)]
|
77 |
#![allow(clippy::module_inception)]
|
78 |
#![allow(clippy::box_collection)]
|
79 |
#![allow(clippy::too_many_arguments)]
|
1 |
#![allow(dead_code, clippy::box_collection)]
|