Searched defs:Box (Results 1 – 4 of 4) sorted by relevance
/linux-6.6.21/rust/alloc/ |
D | boxed.rs | 199 pub struct Box< struct 204 impl<T> Box<T> { implementation 364 impl<T, A: Allocator> Box<T, A> { implementation 614 impl<T> Box<[T]> { impl 737 impl<T, A: Allocator> Box<[T], A> { implementation 797 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { implementation 870 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { implementation 909 impl<T: ?Sized> Box<T> { impl 959 impl<T: ?Sized, A: Allocator> Box<T, A> { impl 1229 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation [all …]
|
/linux-6.6.21/rust/kernel/ |
D | types.rs | 51 impl<T: 'static> ForeignOwnable for Box<T> { implementation
|
D | init.rs | 1155 impl<T> InPlaceInit<T> for Box<T> { implementation
|
/linux-6.6.21/rust/alloc/vec/ |
D | mod.rs | 3474 impl<T, A: Allocator> From<Vec<T, A>> for Box<[T], A> { implementation
|