kernel-alloc-rs
kernel-alloc-rs copied to clipboard
Minimalistic Windows Kernel Allocator.
Results
2
kernel-alloc-rs issues
Sort by
recently updated
recently updated
newest added
`Clone` can be needed for specific types, such as `Rc` or `Arc`. You allocators are ZST, thus I think it is fine to derive Clone for them.
> 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...