rust: alloc: remove extension of std's Box

Now that all existing `Box` users were moved to the kernel `Box` type,
remove the `BoxExt` extension and all other related extensions.

Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Benno Lossin <benno.lossin@proton.me>
Reviewed-by: Gary Guo <gary@garyguo.net>
Signed-off-by: Danilo Krummrich <dakr@kernel.org>
Link: https://lore.kernel.org/r/20241004154149.93856-14-dakr@kernel.org
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
This commit is contained in:
Danilo Krummrich
2024-10-04 17:41:17 +02:00
committed by Miguel Ojeda
parent 8373147ce4
commit e8c6ccdbca
6 changed files with 3 additions and 188 deletions

View File

@@ -4,7 +4,6 @@
#[cfg(not(any(test, testlib)))]
pub mod allocator;
pub mod box_ext;
pub mod kbox;
pub mod vec_ext;