Lines Matching defs:Vec
100 pub struct Vec<T, A: Allocator> { struct
111 /// Type alias for [`Vec`] with a [`Kmalloc`] allocator. argument
151 unsafe impl<T, A> Send for Vec<T, A> implementation
159 unsafe impl<T, A> Sync for Vec<T, A> implementation
166 impl<T, A> Vec<T, A> impl
723 impl<T: Clone, A: Allocator> Vec<T, A> { impl
816 impl<T, A> Drop for Vec<T, A> implementation
836 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> implementation
861 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation
867 impl<T, A> Deref for Vec<T, A> implementation
881 impl<T, A> DerefMut for Vec<T, A> implementation
893 impl<T: Eq, A> Eq for Vec<T, A> where A: Allocator {} implementation
895 impl<T, I: SliceIndex<[T]>, A> Index<I> for Vec<T, A> implementation
907 impl<T, I: SliceIndex<[T]>, A> IndexMut<I> for Vec<T, A> implementation
943 impl<'a, T, A> IntoIterator for &'a Vec<T, A> implementation
955 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> implementation
1158 impl<T, A> IntoIterator for Vec<T, A> implementation