Searched defs:Box (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/rust/alloc/ |
D | boxed.rs | 184 pub struct Box< struct 189 impl<T> Box<T> { implementation 342 impl<T, A: Allocator> Box<T, A> { implementation 592 impl<T> Box<[T]> { implementation 711 impl<T, A: Allocator> Box<[T], A> { implementation 771 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { impl 846 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { impl 885 impl<T: ?Sized> Box<T> { implementation 934 impl<T: ?Sized, A: Allocator> Box<T, A> { impl 1182 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation [all …]
|
/Linux-v6.1/rust/alloc/vec/ |
D | mod.rs | 3063 impl<T, A: Allocator> From<Vec<T, A>> for Box<[T], A> { implementation
|