Lines Matching defs:Vec
402 pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> { struct
403 buf: RawVec<T, A>, argument
411 impl<T> Vec<T> { implementation
550 impl<T, A: Allocator> Vec<T, A> { impl
2216 impl<T: Clone, A: Allocator> Vec<T, A> { implementation
2315 impl<T, A: Allocator, const N: usize> Vec<[T; N], A> { impl
2386 impl<T, A: Allocator> Vec<T, A> { impl
2418 impl<T: PartialEq, A: Allocator> Vec<T, A> { implementation
2466 impl<T: Clone, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2485 impl<T: Copy, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation
2518 impl<T, A: Allocator> ops::Deref for Vec<T, A> { implementation
2527 impl<T, A: Allocator> ops::DerefMut for Vec<T, A> { implementation
2539 impl<T: Clone, A: Allocator> SpecCloneFrom for Vec<T, A> { implementation
2555 impl<T: Copy, A: Allocator> SpecCloneFrom for Vec<T, A> { implementation
2564 impl<T: Clone, A: Allocator + Clone> Clone for Vec<T, A> { implementation
2599 impl<T: Hash, A: Allocator> Hash for Vec<T, A> { implementation
2611 impl<T, I: SliceIndex<[T]>, A: Allocator> Index<I> for Vec<T, A> { implementation
2625 impl<T, I: SliceIndex<[T]>, A: Allocator> IndexMut<I> for Vec<T, A> { implementation
2634 impl<T> FromIterator<T> for Vec<T> { implementation
2642 impl<T, A: Allocator> IntoIterator for Vec<T, A> { implementation
2684 impl<'a, T, A: Allocator> IntoIterator for &'a Vec<T, A> { implementation
2694 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> { implementation
2705 impl<T, A: Allocator> Extend<T> for Vec<T, A> { implementation
2722 impl<T, A: Allocator> Vec<T, A> { impl
2862 impl<'a, T: Copy + 'a, A: Allocator + 'a> Extend<&'a T> for Vec<T, A> { implementation
2880 impl<T: PartialOrd, A: Allocator> PartialOrd for Vec<T, A> { implementation
2888 impl<T: Eq, A: Allocator> Eq for Vec<T, A> {} implementation
2892 impl<T: Ord, A: Allocator> Ord for Vec<T, A> { implementation
2900 unsafe impl<#[may_dangle] T, A: Allocator> Drop for Vec<T, A> { implementation
2914 impl<T> const Default for Vec<T> { implementation
2922 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { implementation
2929 impl<T, A: Allocator> AsRef<Vec<T, A>> for Vec<T, A> { implementation
2936 impl<T, A: Allocator> AsMut<Vec<T, A>> for Vec<T, A> { implementation
2943 impl<T, A: Allocator> AsRef<[T]> for Vec<T, A> { implementation
2950 impl<T, A: Allocator> AsMut<[T]> for Vec<T, A> { implementation
2958 impl<T: Clone> From<&[T]> for Vec<T> { implementation
2978 impl<T: Clone> From<&mut [T]> for Vec<T> { implementation
2998 impl<T, const N: usize> From<[T; N]> for Vec<T> { implementation
3018 impl<'a, T> From<Cow<'a, [T]>> for Vec<T> implementation
3044 impl<T, A: Allocator> From<Box<[T], A>> for Vec<T, A> { implementation
3081 impl From<&str> for Vec<u8> { implementation