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> { argument
650 impl<T, A: Allocator> Vec<T, A> { implementation
2480 impl<T: Clone, A: Allocator> Vec<T, A> { impl
2642 impl<T, A: Allocator, const N: usize> Vec<[T; N], A> { implementation
2703 impl<T, A: Allocator> Vec<T, A> { implementation
2765 impl<T: PartialEq, A: Allocator> Vec<T, A> { implementation
2813 impl<T: Clone, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2832 impl<T: Copy, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2865 impl<T, A: Allocator> ops::Deref for Vec<T, A> { implementation
2875 impl<T, A: Allocator> ops::DerefMut for Vec<T, A> { implementation
2884 impl<T: Clone, A: Allocator + Clone> Clone for Vec<T, A> { implementation
2918 impl<T: Hash, A: Allocator> Hash for Vec<T, A> { implementation
2930 impl<T, I: SliceIndex<[T]>, A: Allocator> Index<I> for Vec<T, A> { implementation
2944 impl<T, I: SliceIndex<[T]>, A: Allocator> IndexMut<I> for Vec<T, A> { implementation
2953 impl<T> FromIterator<T> for Vec<T> { implementation
2961 impl<T, A: Allocator> IntoIterator for Vec<T, A> { implementation
3006 impl<'a, T, A: Allocator> IntoIterator for &'a Vec<T, A> { implementation
3016 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> { implementation
3027 impl<T, A: Allocator> Extend<T> for Vec<T, A> { implementation
3044 impl<T, A: Allocator> Vec<T, A> { implementation
3275 impl<'a, T: Copy + 'a, A: Allocator + 'a> Extend<&'a T> for Vec<T, A> { implementation
3293 impl<T: PartialOrd, A: Allocator> PartialOrd for Vec<T, A> { implementation
3301 impl<T: Eq, A: Allocator> Eq for Vec<T, A> {} implementation
3305 impl<T: Ord, A: Allocator> Ord for Vec<T, A> { implementation
3313 unsafe impl<#[may_dangle] T, A: Allocator> Drop for Vec<T, A> { implementation
3326 impl<T> Default for Vec<T> { implementation
3336 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation
3343 impl<T, A: Allocator> AsRef<Vec<T, A>> for Vec<T, A> { implementation
3350 impl<T, A: Allocator> AsMut<Vec<T, A>> for Vec<T, A> { implementation
3357 impl<T, A: Allocator> AsRef<[T]> for Vec<T, A> { implementation
3364 impl<T, A: Allocator> AsMut<[T]> for Vec<T, A> { implementation
3372 impl<T: Clone> From<&[T]> for Vec<T> { implementation
3392 impl<T: Clone> From<&mut [T]> for Vec<T> { implementation
3412 impl<T, const N: usize> From<[T; N]> for Vec<T> { implementation
3433 impl<'a, T> From<Cow<'a, [T]>> for Vec<T> implementation
3459 impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> { implementation
3504 impl From<&str> for Vec<u8> { implementation