Searched defs:Box (Results 1 – 1 of 1) sorted by relevance
/linux-6.14.4/rust/kernel/alloc/ |
D | kbox.rs | 64 pub struct Box<T: ?Sized, A: Allocator>(NonNull<T>, PhantomData<A>); struct 103 unsafe impl<T, A> Send for Box<T, A> implementation 111 unsafe impl<T, A> Sync for Box<T, A> implementation 118 impl<T, A> Box<T, A> impl 172 impl<T, A> Box<MaybeUninit<T>, A> implementation 202 impl<T, A> Box<T, A> impl 304 impl<T, A> InPlaceWrite<T> for Box<MaybeUninit<T>, A> implementation 329 impl<T, A> InPlaceInit<T> for Box<T, A> implementation 352 impl<T: 'static, A> ForeignOwnable for Box<T, A> implementation 425 impl<T, A> Deref for Box<T, A> implementation [all …]
|