pub type VBox<T> = Box<T, Vmalloc>;
Type alias for Box with a Vmalloc allocator.
Box
Vmalloc
let b = VBox::new(24_u64, GFP_KERNEL)?; assert_eq!(*b, 24_u64);
struct VBox<T>(/* private fields */);