pub type KBox<T> = Box<T, Kmalloc>;
Expand description
Aliased Type§
struct KBox<T>(/* private fields */);
Implementations
Source§impl<T, A> Box<MaybeUninit<T>, A>where
A: Allocator,
impl<T, A> Box<MaybeUninit<T>, A>where
A: Allocator,
Sourcepub unsafe fn assume_init(self) -> Box<T, A>
pub unsafe fn assume_init(self) -> Box<T, A>
Converts a Box<MaybeUninit<T>, A>
to a Box<T, A>
.
It is undefined behavior to call this function while the value inside of b
is not yet
fully initialized.
§Safety
Callers must ensure that the value inside of b
is in an initialized state.
Source§impl<T, A> Box<T, A>
impl<T, A> Box<T, A>
Sourcepub const unsafe fn from_raw(raw: *mut T) -> Self
pub const unsafe fn from_raw(raw: *mut T) -> Self
Creates a new Box<T, A>
from a raw pointer.
§Safety
For non-ZSTs, raw
must point at an allocation allocated with A
that is sufficiently
aligned for and holds a valid T
. The caller passes ownership of the allocation to the
Box
.
For ZSTs, raw
must be a dangling, well aligned pointer.
Sourcepub fn into_raw(b: Self) -> *mut T
pub fn into_raw(b: Self) -> *mut T
Consumes the Box<T, A>
and returns a raw pointer.
This will not run the destructor of T
and for non-ZSTs the allocation will stay alive
indefinitely. Use Box::from_raw
to recover the Box
, drop the value and free the
allocation, if any.
§Examples
let x = KBox::new(24, GFP_KERNEL)?;
let ptr = KBox::into_raw(x);
// SAFETY: `ptr` comes from a previous call to `KBox::into_raw`.
let x = unsafe { KBox::from_raw(ptr) };
assert_eq!(*x, 24);
Sourcepub fn leak<'a>(b: Self) -> &'a mut T
pub fn leak<'a>(b: Self) -> &'a mut T
Consumes and leaks the Box<T, A>
and returns a mutable reference.
See Box::into_raw
for more details.
Source§impl<T, A> Box<T, A>where
A: Allocator,
impl<T, A> Box<T, A>where
A: Allocator,
Sourcepub fn new(x: T, flags: Flags) -> Result<Self, AllocError>
pub fn new(x: T, flags: Flags) -> Result<Self, AllocError>
Creates a new Box<T, A>
and initializes its contents with x
.
New memory is allocated with A
. The allocation may fail, in which case an error is
returned. For ZSTs no memory is allocated.
Sourcepub fn new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>, A>, AllocError>
pub fn new_uninit(flags: Flags) -> Result<Box<MaybeUninit<T>, A>, AllocError>
Creates a new Box<T, A>
with uninitialized contents.
New memory is allocated with A
. The allocation may fail, in which case an error is
returned. For ZSTs no memory is allocated.
§Examples
let b = KBox::<u64>::new_uninit(GFP_KERNEL)?;
let b = KBox::write(b, 24);
assert_eq!(*b, 24_u64);
Sourcepub fn pin(x: T, flags: Flags) -> Result<Pin<Box<T, A>>, AllocError>where
A: 'static,
pub fn pin(x: T, flags: Flags) -> Result<Pin<Box<T, A>>, AllocError>where
A: 'static,
Constructs a new Pin<Box<T, A>>
. If T
does not implement Unpin
, then x
will be
pinned in memory and can’t be moved.
Sourcepub fn drop_contents(this: Self) -> Box<MaybeUninit<T>, A>
pub fn drop_contents(this: Self) -> Box<MaybeUninit<T>, A>
Drops the contents, but keeps the allocation.
§Examples
let value = KBox::new([0; 32], GFP_KERNEL)?;
assert_eq!(*value, [0; 32]);
let value = KBox::drop_contents(value);
// Now we can re-use `value`:
let value = KBox::write(value, [1; 32]);
assert_eq!(*value, [1; 32]);
Sourcepub fn into_inner(b: Self) -> T
pub fn into_inner(b: Self) -> T
Moves the Box
’s value out of the Box
and consumes the Box
.
Trait Implementations§
Source§impl<T, const ID: u64> RawWorkItem<ID> for Pin<KBox<T>>
impl<T, const ID: u64> RawWorkItem<ID> for Pin<KBox<T>>
Source§type EnqueueOutput = ()
type EnqueueOutput = ()
Queue::enqueue
.Source§impl<T: 'static, A> ForeignOwnable for Box<T, A>where
A: Allocator,
impl<T: 'static, A> ForeignOwnable for Box<T, A>where
A: Allocator,
Source§type Borrowed<'a> = &'a T
type Borrowed<'a> = &'a T
ForeignOwnable::into_foreign
and
ForeignOwnable::from_foreign
.Source§fn into_foreign(self) -> *const c_void
fn into_foreign(self) -> *const c_void
Source§impl<T, A> InPlaceInit<T> for Box<T, A>where
A: Allocator + 'static,
impl<T, A> InPlaceInit<T> for Box<T, A>where
A: Allocator + 'static,
Source§fn try_pin_init<E>(
init: impl PinInit<T, E>,
flags: Flags,
) -> Result<Pin<Self>, E>where
E: From<AllocError>,
fn try_pin_init<E>(
init: impl PinInit<T, E>,
flags: Flags,
) -> Result<Pin<Self>, E>where
E: From<AllocError>,
T
inside of a new smart pointer of this
type. Read moreSource§fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E>where
E: From<AllocError>,
fn try_init<E>(init: impl Init<T, E>, flags: Flags) -> Result<Self, E>where
E: From<AllocError>,
T
.Source§impl<T, A> InPlaceWrite<T> for Box<MaybeUninit<T>, A>where
A: Allocator + 'static,
impl<T, A> InPlaceWrite<T> for Box<MaybeUninit<T>, A>where
A: Allocator + 'static,
Source§type Initialized = Box<T, A>
type Initialized = Box<T, A>
Self
turns into when the contents are initialized.Source§fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E>
fn write_init<E>(self, init: impl Init<T, E>) -> Result<Self::Initialized, E>
self
. Read moreSource§fn write_pin_init<E>(
self,
init: impl PinInit<T, E>,
) -> Result<Pin<Self::Initialized>, E>
fn write_pin_init<E>( self, init: impl PinInit<T, E>, ) -> Result<Pin<Self::Initialized>, E>
self
. Read more