pub type KVVec<T> = Vec<T, KVmalloc>;
Type alias for Vec with a KVmalloc allocator.
Vec
KVmalloc
let mut v = KVVec::new(); v.push(1, GFP_KERNEL)?; assert_eq!(&v, &[1]);
struct KVVec<T> { /* private fields */ }