pub enum MapSizeEnsureChainError {
    OomPdpt,
    OomPd,
    OomPt,
}Expand description
Error returned by MapSize::ensure_chain_for when allocating a new
intermediate table frame fails.
Variants§
Trait Implementations§
Source§impl Clone for MapSizeEnsureChainError
 
impl Clone for MapSizeEnsureChainError
Source§fn clone(&self) -> MapSizeEnsureChainError
 
fn clone(&self) -> MapSizeEnsureChainError
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 MapSizeEnsureChainError
 
impl Debug for MapSizeEnsureChainError
Source§impl Display for MapSizeEnsureChainError
 
impl Display for MapSizeEnsureChainError
Source§impl Error for MapSizeEnsureChainError
 
impl Error for MapSizeEnsureChainError
1.30.0 · 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<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 From<MapSizeEnsureChainError> for AddressSpaceMapRegionError
 
impl From<MapSizeEnsureChainError> for AddressSpaceMapRegionError
Source§fn from(source: MapSizeEnsureChainError) -> Self
 
fn from(source: MapSizeEnsureChainError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MapSizeEnsureChainError
 
impl PartialEq for MapSizeEnsureChainError
impl Copy for MapSizeEnsureChainError
impl Eq for MapSizeEnsureChainError
impl StructuralPartialEq for MapSizeEnsureChainError
Auto Trait Implementations§
impl Freeze for MapSizeEnsureChainError
impl RefUnwindSafe for MapSizeEnsureChainError
impl Send for MapSizeEnsureChainError
impl Sync for MapSizeEnsureChainError
impl Unpin for MapSizeEnsureChainError
impl UnwindSafe for MapSizeEnsureChainError
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