Searched defs:Vec (Results 1 – 2 of 2) sorted by relevance
/Linux-v6.1/rust/alloc/vec/ |
D | mod.rs | 402 pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> { struct 403 buf: RawVec<T, A>, argument 411 impl<T> Vec<T> { argument 550 impl<T, A: Allocator> Vec<T, A> { impl 2216 impl<T: Clone, A: Allocator> Vec<T, A> { impl 2315 impl<T, A: Allocator, const N: usize> Vec<[T; N], A> { impl 2386 impl<T, A: Allocator> Vec<T, A> { impl 2418 impl<T: PartialEq, A: Allocator> Vec<T, A> { implementation 2466 impl<T: Clone, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation 2485 impl<T: Copy, A: Allocator> ExtendFromWithinSpec for Vec<T, A> { implementation [all …]
|
/Linux-v6.1/rust/alloc/ |
D | slice.rs | 839 impl<T> Borrow<[T]> for Vec<T> { implementation 846 impl<T> BorrowMut<[T]> for Vec<T> { implementation
|