Searched refs:SpecExtend (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/rust/alloc/vec/ |
H A 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> SpecExtend<&'a T, I> for Vec<T, A> 101 impl<'a, T: 'a, A: Allocator> SpecExtend<&'a T, slice::Iter<'a, T>> for Vec<T, A> impl
|
H A D | mod.rs | 144 use self::spec_extend::SpecExtend; 3015 <Self as SpecExtend<T, I::IntoIter>>::spec_extend(self, iter.into_iter()) in extend()
|
/openbmc/linux/rust/alloc/collections/ |
H A D | mod.rs | 153 trait SpecExtend<I: IntoIterator> { trait
|