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