Searched refs:SpecExtend (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.6/rust/alloc/vec/ |
D | spec_extend.rs | 12 pub(super) trait SpecExtend<T, I> { interface 22 impl<T, I, A: Allocator> SpecExtend<T, I> for Vec<T, A> 41 impl<T, I, A: Allocator> SpecExtend<T, I> for Vec<T, A> 60 impl<T, A: Allocator> SpecExtend<T, IntoIter<T>> for Vec<T, A> { impl 80 impl<'a, T: 'a, I, A: Allocator + 'a> SpecExtend<&'a T, I> for Vec<T, A> 101 impl<'a, T: 'a, A: Allocator + 'a> SpecExtend<&'a T, slice::Iter<'a, T>> for Vec<T, A> impl
|
D | mod.rs | 144 use self::spec_extend::SpecExtend; 3030 <Self as SpecExtend<T, I::IntoIter>>::spec_extend(self, iter.into_iter()) in extend()
|
/Linux-v6.6/rust/alloc/collections/ |
D | mod.rs | 153 trait SpecExtend<I: IntoIterator> { interface
|