Home
last modified time | relevance | path

Searched refs:SpecExtend (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/rust/alloc/vec/
H A Dspec_extend.rs12 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 Dmod.rs144 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 Dmod.rs153 trait SpecExtend<I: IntoIterator> { interface