pub struct LinuxPageMapError(/* private fields */);Expand description
Errors that can happen during PageMap operations
Trait Implementations§
Source§impl Debug for LinuxPageMapError
impl Debug for LinuxPageMapError
Source§impl Display for LinuxPageMapError
impl Display for LinuxPageMapError
Source§impl Error for LinuxPageMapError
impl Error for LinuxPageMapError
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<LinuxPageMapError> for Error
impl From<LinuxPageMapError> for Error
Source§fn from(source: LinuxPageMapError) -> Self
fn from(source: LinuxPageMapError) -> Self
Converts to this type from the input type.
Source§impl From<LinuxPageMapError> for HammerVictimError
impl From<LinuxPageMapError> for HammerVictimError
Source§fn from(source: LinuxPageMapError) -> Self
fn from(source: LinuxPageMapError) -> Self
Converts to this type from the input type.
Source§impl From<PageMapError> for LinuxPageMapError
impl From<PageMapError> for LinuxPageMapError
Source§fn from(source: PageMapError) -> Self
fn from(source: PageMapError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LinuxPageMapError
impl !RefUnwindSafe for LinuxPageMapError
impl Send for LinuxPageMapError
impl Sync for LinuxPageMapError
impl Unpin for LinuxPageMapError
impl !UnwindSafe for LinuxPageMapError
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more