kernel-alloc-rs
kernel-alloc-rs copied to clipboard
Examples for String, and Vec
Rust has many useful abstractions and utils that require heap allocations, such as String, Vec, and Box. To be able to use them in the Windows kernel space, we need to allocate memory at runtime, which requires a custom allocator. This crate provides such allocators tailored for the Windows kernel.
Some examples illustrating this library use with String, and Vec would be really appreciated.