Lines Matching defs:Vec
98 pub struct Vec<T, A: Allocator> { struct
109 /// Type alias for [`Vec`] with a [`Kmalloc`] allocator. argument
149 unsafe impl<T, A> Send for Vec<T, A> implementation
157 unsafe impl<T, A> Sync for Vec<T, A> implementation
164 impl<T, A> Vec<T, A> impl
460 impl<T: Clone, A: Allocator> Vec<T, A> { implementation
526 impl<T, A> Drop for Vec<T, A> implementation
546 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> implementation
571 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation
577 impl<T, A> Deref for Vec<T, A> implementation
591 impl<T, A> DerefMut for Vec<T, A> implementation
603 impl<T: Eq, A> Eq for Vec<T, A> where A: Allocator {} implementation
605 impl<T, I: SliceIndex<[T]>, A> Index<I> for Vec<T, A> implementation
617 impl<T, I: SliceIndex<[T]>, A> IndexMut<I> for Vec<T, A> implementation
653 impl<'a, T, A> IntoIterator for &'a Vec<T, A> implementation
665 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> implementation
867 impl<T, A> IntoIterator for Vec<T, A> implementation