Lines Matching defs:Vec
399 pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> { struct
400 buf: RawVec<T, A>, argument
408 impl<T> Vec<T> { implementation
648 impl<T, A: Allocator> Vec<T, A> { impl
2481 impl<T: Clone, A: Allocator> Vec<T, A> { implementation
2643 impl<T, A: Allocator, const N: usize> Vec<[T; N], A> { implementation
2688 impl<T: Clone, A: Allocator> Vec<T, A> { implementation
2750 impl<T: PartialEq, A: Allocator> Vec<T, A> { implementation
2798 impl<T: Clone, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2817 impl<T: Copy, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2850 impl<T, A: Allocator> ops::Deref for Vec<T, A> { implementation
2860 impl<T, A: Allocator> ops::DerefMut for Vec<T, A> { implementation
2869 impl<T: Clone, A: Allocator + Clone> Clone for Vec<T, A> { implementation
2903 impl<T: Hash, A: Allocator> Hash for Vec<T, A> { implementation
2915 impl<T, I: SliceIndex<[T]>, A: Allocator> Index<I> for Vec<T, A> { implementation
2929 impl<T, I: SliceIndex<[T]>, A: Allocator> IndexMut<I> for Vec<T, A> { implementation
2938 impl<T> FromIterator<T> for Vec<T> { implementation
2946 impl<T, A: Allocator> IntoIterator for Vec<T, A> { implementation
2991 impl<'a, T, A: Allocator> IntoIterator for &'a Vec<T, A> { implementation
3001 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> { implementation
3012 impl<T, A: Allocator> Extend<T> for Vec<T, A> { implementation
3029 impl<T, A: Allocator> Vec<T, A> { impl
3266 impl<'a, T: Copy + 'a, A: Allocator> Extend<&'a T> for Vec<T, A> { implementation
3284 impl<T, A1, A2> PartialOrd<Vec<T, A2>> for Vec<T, A1> implementation
3297 impl<T: Eq, A: Allocator> Eq for Vec<T, A> {} implementation
3301 impl<T: Ord, A: Allocator> Ord for Vec<T, A> { implementation
3309 unsafe impl<#[may_dangle] T, A: Allocator> Drop for Vec<T, A> { implementation
3322 impl<T> Default for Vec<T> { implementation
3332 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation
3339 impl<T, A: Allocator> AsRef<Vec<T, A>> for Vec<T, A> { implementation
3346 impl<T, A: Allocator> AsMut<Vec<T, A>> for Vec<T, A> { implementation
3353 impl<T, A: Allocator> AsRef<[T]> for Vec<T, A> { implementation
3360 impl<T, A: Allocator> AsMut<[T]> for Vec<T, A> { implementation
3368 impl<T: Clone> From<&[T]> for Vec<T> { implementation
3388 impl<T: Clone> From<&mut [T]> for Vec<T> { implementation
3408 impl<T, const N: usize> From<[T; N]> for Vec<T> { implementation
3429 impl<'a, T> From<Cow<'a, [T]>> for Vec<T> implementation
3455 impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> { implementation
3500 impl From<&str> for Vec<u8> { implementation