pub enum AcpiMappingError {
OutOfMemory,
}
Expand description
An error which can occur when mapping physical memory
Variants§
OutOfMemory
The system has run out of frames of memory to map
Trait Implementations§
Source§impl Clone for AcpiMappingError
impl Clone for AcpiMappingError
Source§fn clone(&self) -> AcpiMappingError
fn clone(&self) -> AcpiMappingError
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 AcpiMappingError
impl Debug for AcpiMappingError
Source§impl Display for AcpiMappingError
impl Display for AcpiMappingError
Source§impl PartialEq for AcpiMappingError
impl PartialEq for AcpiMappingError
impl Copy for AcpiMappingError
impl Eq for AcpiMappingError
impl StructuralPartialEq for AcpiMappingError
Auto Trait Implementations§
impl Freeze for AcpiMappingError
impl RefUnwindSafe for AcpiMappingError
impl Send for AcpiMappingError
impl Sync for AcpiMappingError
impl Unpin for AcpiMappingError
impl UnwindSafe for AcpiMappingError
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