pub enum AcpiAllocationError {
OutOfMemory,
}
Expand description
An error which can occur during allocation
Variants§
OutOfMemory
The system has run out of dynamic memory
Trait Implementations§
Source§impl Clone for AcpiAllocationError
impl Clone for AcpiAllocationError
Source§fn clone(&self) -> AcpiAllocationError
fn clone(&self) -> AcpiAllocationError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AcpiAllocationError
impl Debug for AcpiAllocationError
Source§impl Display for AcpiAllocationError
impl Display for AcpiAllocationError
Source§impl PartialEq for AcpiAllocationError
impl PartialEq for AcpiAllocationError
impl Copy for AcpiAllocationError
impl Eq for AcpiAllocationError
impl StructuralPartialEq for AcpiAllocationError
Auto Trait Implementations§
impl Freeze for AcpiAllocationError
impl RefUnwindSafe for AcpiAllocationError
impl Send for AcpiAllocationError
impl Sync for AcpiAllocationError
impl Unpin for AcpiAllocationError
impl UnwindSafe for AcpiAllocationError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more