Home
last modified time | relevance | path

Searched defs:Vec (Results 1 – 4 of 4) sorted by relevance

/linux/rust/kernel/alloc/
H A Dkvec.rs107 pub struct Vec<T, A: Allocator> { global() struct
118 _pVec global() argument
158 unsafe impl<T, A> Send for Vec<T, A> global() implementation
166 unsafe impl<T, A> Sync for Vec<T, A> global() implementation
173 impl<T, A> Vec<T, A> global() implementation
743 impl<T> Vec<T, KVmalloc> { global() implementation
850 impl<T: Clone, A: Allocator> Vec<T, A> { global() implementation
943 impl<T, A> Drop for Vec<T, A> global() implementation
963 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> global() implementation
981 impl<T, A: Allocator> Default for Vec<T, A> { global() implementation
988 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { global() implementation
994 impl<T, A> Deref for Vec<T, A> global() implementation
1008 impl<T, A> DerefMut for Vec<T, A> global() implementation
1037 impl<T, A> Borrow<[T]> for Vec<T, A> global() implementation
1063 impl<T, A> BorrowMut<[T]> for Vec<T, A> global() implementation
1072 impl<T: Eq, A> Eq for Vec<T, A> where A: Allocator {} global() implementation
1074 impl<T, I: SliceIndex<[T]>, A> Index<I> for Vec<T, A> global() implementation
1086 impl<T, I: SliceIndex<[T]>, A> IndexMut<I> for Vec<T, A> global() implementation
1122 impl<'a, T, A> IntoIterator for &'a Vec<T, A> global() implementation
1134 impl<'a, T, A: Allocator> IntoIterator for &'a mut Vec<T, A> global() implementation
1380 impl<T, A> IntoIterator for Vec<T, A> global() implementation
[all...]
/linux/rust/syn/
H A Dparse_quote.rs170 impl ParseQuote for Vec<Attribute> { implementation
231 impl ParseQuote for Vec<Stmt> { implementation
238 impl ParseQuote for Vec<Arm> { implementation
/linux/rust/kernel/debugfs/
H A Dtraits.rs127 impl<T, A> BinaryWriter for Vec<T, A> global() implementation
235 impl<T, A> BinaryReaderMut for Vec<T, A> global() implementation
/linux/rust/quote/
H A Druntime.rs139 impl<'q, T: 'q> RepAsIteratorExt<'q> for Vec<T> { implementation