Searched defs:Vec (Results 1 – 1 of 1) sorted by relevance
/linux-6.14.4/rust/kernel/alloc/ |
D | kvec.rs | 95 pub struct Vec<T, A: Allocator> { struct 106 /// Type alias for [`Vec`] with a [`Kmalloc`] allocator. argument 146 unsafe impl<T, A> Send for Vec<T, A> implementation 154 unsafe impl<T, A> Sync for Vec<T, A> implementation 161 impl<T, A> Vec<T, A> impl 457 impl<T: Clone, A: Allocator> Vec<T, A> { impl 523 impl<T, A> Drop for Vec<T, A> implementation 543 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> implementation 568 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation 574 impl<T, A> Deref for Vec<T, A> implementation [all …]
|