Searched defs:Box (Results 1 – 4 of 4) sorted by relevance
/rust/alloc/ |
D | boxed.rs | 199 pub struct Box< struct 204 impl<T> Box<T> { impl 364 impl<T, A: Allocator> Box<T, A> { implementation 606 impl<T> Box<[T]> { impl 725 impl<T, A: Allocator> Box<[T], A> { impl 785 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { implementation 858 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { implementation 897 impl<T: ?Sized> Box<T> { implementation 947 impl<T: ?Sized, A: Allocator> Box<T, A> { impl 1217 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation [all …]
|
/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
|
/rust/alloc/vec/ |
D | mod.rs | 3478 impl<T, A: Allocator> From<Vec<T, A>> for Box<[T], A> { implementation
|