Searched defs:Vec (Results 1 – 1 of 1) sorted by relevance
/linux/rust/kernel/alloc/ ! |
H A D | kvec.rs | 101 pub struct Vec<T, A: Allocator> { struct 112 /// Type alias for [`Vec`] with a [`Kmalloc`] allocator. argument 152 unsafe impl<T, A> Send for Vec<T, A> implementation 160 unsafe impl<T, A> Sync for Vec<T, A> implementation 167 impl<T, A> Vec<T, A> implementation 724 impl<T: Clone, A: Allocator> Vec<T, A> { implementation 817 impl<T, A> Drop for Vec<T, A> implementation 837 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> implementation 855 impl<T, A: Allocator> Default for Vec<T, A> { implementation 862 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation [all …]
|