Home
last modified time | relevance | path

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

/linux/rust/kernel/alloc/
H A Dkvec.rs104 pub struct Vec<T, A: Allocator> { struct
115 /// Type alias for [`Vec`] with a [`Kmalloc`] allocator. argument
155 unsafe impl<T, A> Send for Vec<T, A> implementation
163 unsafe impl<T, A> Sync for Vec<T, A> implementation
170 impl<T, A> Vec<T, A> impl
738 impl<T: Clone, A: Allocator> Vec<T, A> { impl
831 impl<T, A> Drop for Vec<T, A> implementation
851 impl<T, A, const N: usize> From<Box<[T; N], A>> for Vec<T, A> implementation
869 impl<T, A: Allocator> Default for Vec<T, A> { implementation
876 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Vec<T, A> { 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> implementation
235 impl<T, A> BinaryReaderMut for Vec<T, A> implementation
/linux/rust/quote/
H A Druntime.rs139 impl<'q, T: 'q> RepAsIteratorExt<'q> for Vec<T> { implementation