pub enum AddressSpaceMapOneError {
OutOfMemory(MapSizeEnsureChainError),
}Expand description
A mapping error.
Variants§
OutOfMemory(MapSizeEnsureChainError)
Trait Implementations§
Source§impl Clone for AddressSpaceMapOneError
impl Clone for AddressSpaceMapOneError
Source§fn clone(&self) -> AddressSpaceMapOneError
fn clone(&self) -> AddressSpaceMapOneError
Returns a duplicate 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 AddressSpaceMapOneError
impl Debug for AddressSpaceMapOneError
Source§impl Display for AddressSpaceMapOneError
impl Display for AddressSpaceMapOneError
Source§impl Error for AddressSpaceMapOneError
impl Error for AddressSpaceMapOneError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<AddressSpaceMapOneError> for AddressSpaceMapRegionError
impl From<AddressSpaceMapOneError> for AddressSpaceMapRegionError
Source§fn from(e: AddressSpaceMapOneError) -> Self
fn from(e: AddressSpaceMapOneError) -> Self
Converts to this type from the input type.
Source§impl From<MapSizeEnsureChainError> for AddressSpaceMapOneError
impl From<MapSizeEnsureChainError> for AddressSpaceMapOneError
Source§fn from(source: MapSizeEnsureChainError) -> Self
fn from(source: MapSizeEnsureChainError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddressSpaceMapOneError
impl PartialEq for AddressSpaceMapOneError
impl Copy for AddressSpaceMapOneError
impl Eq for AddressSpaceMapOneError
impl StructuralPartialEq for AddressSpaceMapOneError
Auto Trait Implementations§
impl Freeze for AddressSpaceMapOneError
impl RefUnwindSafe for AddressSpaceMapOneError
impl Send for AddressSpaceMapOneError
impl Sync for AddressSpaceMapOneError
impl Unpin for AddressSpaceMapOneError
impl UnwindSafe for AddressSpaceMapOneError
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