pub enum ZeroAllocError {
AllocError,
Uninit(Frame),
}
🔬This is a nightly-only experimental API. (
kernel_allocation_zeroing
#2)Expand description
The error returned when an allocation requesting zeroed out memory was unsuccessful
Variants§
AllocError
🔬This is a nightly-only experimental API. (
kernel_allocation_zeroing
#2)No allocation could be made
Uninit(Frame)
🔬This is a nightly-only experimental API. (
kernel_allocation_zeroing
#2)An allocation could be made, but the result is not zeroed
Trait Implementations§
Source§impl Debug for ZeroAllocError
impl Debug for ZeroAllocError
Source§impl PartialEq for ZeroAllocError
impl PartialEq for ZeroAllocError
impl Eq for ZeroAllocError
impl StructuralPartialEq for ZeroAllocError
Auto Trait Implementations§
impl Freeze for ZeroAllocError
impl RefUnwindSafe for ZeroAllocError
impl Send for ZeroAllocError
impl Sync for ZeroAllocError
impl Unpin for ZeroAllocError
impl UnwindSafe for ZeroAllocError
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more