Lines Matching refs:Allocator
11 AllocError, Allocator, Box, Flags,
98 pub struct Vec<T, A: Allocator> {
152 A: Allocator,
160 A: Allocator,
166 A: Allocator,
460 impl<T: Clone, A: Allocator> Vec<T, A> {
528 A: Allocator,
548 A: Allocator,
571 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> {
579 A: Allocator,
593 A: Allocator,
603 impl<T: Eq, A> Eq for Vec<T, A> where A: Allocator {}
607 A: Allocator,
619 A: Allocator,
642 [A1: Allocator, A2: Allocator] Vec<T, A1>, Vec<U, A2>,
643 [A: Allocator] Vec<T, A>, &[U],
644 [A: Allocator] Vec<T, A>, &mut [U],
645 [A: Allocator] &[T], Vec<U, A>,
646 [A: Allocator] &mut [T], Vec<U, A>,
647 [A: Allocator] Vec<T, A>, [U],
648 [A: Allocator] [T], Vec<U, A>,
649 [A: Allocator, const N: usize] Vec<T, A>, [U; N],
650 [A: Allocator, const N: usize] Vec<T, A>, &[U; N],
655 A: Allocator,
665 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A>
667 A: Allocator,
690 pub struct IntoIter<T, A: Allocator> {
700 A: Allocator,
795 A: Allocator,
854 A: Allocator,
869 A: Allocator,