| H A D | kvec.rs | 98 pub struct Vec<T, A: Allocator> { struct 120 pub type KVec<T> = Vec<T, Kmalloc>; 133 pub type VVec<T> = Vec<T, Vmalloc>; 149 unsafe impl<T, A> Send for Vec<T, A> implementation 157 unsafe impl<T, A> Sync for Vec<T, A> implementation 164 impl<T, A> Vec<T, A> impl 319 let mut v = Vec::new(); in with_capacity() 526 impl<T, A> Drop for Vec<T, A> implementation 577 impl<T, A> Deref for Vec<T, A> implementation 591 impl<T, A> DerefMut for Vec<T, A> implementation [all …]
|