Searched defs:Box (Results 1 – 2 of 2) sorted by relevance
/linux-6.15/rust/kernel/alloc/ |
D | kbox.rs | 65 pub struct Box<T: ?Sized, A: Allocator>(NonNull<T>, PhantomData<A>); struct 105 unsafe impl<T, A: Allocator> ZeroableOption for Box<T, A> {} implementation 108 unsafe impl<T, A> Send for Box<T, A> implementation 116 unsafe impl<T, A> Sync for Box<T, A> implementation 123 impl<T, A> Box<T, A> impl 177 impl<T, A> Box<MaybeUninit<T>, A> implementation 207 impl<T, A> Box<T, A> impl 315 impl<T, A> InPlaceWrite<T> for Box<MaybeUninit<T>, A> implementation 340 impl<T, A> InPlaceInit<T> for Box<T, A> implementation 363 impl<T: 'static, A> ForeignOwnable for Box<T, A> implementation [all …]
|
/linux-6.15/rust/pin-init/src/ |
D | alloc.rs | 22 unsafe impl<T> ZeroableOption for Box<T> {} implementation 80 impl<T> InPlaceInit<T> for Box<T> { implementation 136 impl<T> InPlaceWrite<T> for Box<MaybeUninit<T>> { implementation
|