pub enum Error {
Show 13 variants
UnsafeFlagNeeded(UnsafeMmapFlags),
InvalidSize,
InvalidOffset,
InvalidOperation,
MustBeAdjacent,
AttributeMismatch,
BackingMismatch,
Io(Error),
ParseInt(ParseIntError),
Utf8(Utf8Error),
Nix(Error),
Sysctl(SysctlError),
Mach(c_int),
}
Expand description
The error type.
Variants§
UnsafeFlagNeeded(UnsafeMmapFlags)
The following set of unsafe flags must be set to call this function.
InvalidSize
The size is invalid.
InvalidOffset
The offset is invalid.
InvalidOperation
The operation is invalid.
MustBeAdjacent
The memory maps must be adjacent.
AttributeMismatch
The attributes of the memory maps do not match.
BackingMismatch
The backings of the memory maps do not match.
Io(Error)
Represents std::io::Error
.
ParseInt(ParseIntError)
Represents std::num::ParseIntError
.
Utf8(Utf8Error)
Represents std::str::Utf8Error
.
Nix(Error)
Represents nix::Error
.
Sysctl(SysctlError)
Represents sysctl::SysctlError
.
Mach(c_int)
The error code returned from the Mach API.
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ParseIntError> for Error
impl From<ParseIntError> for Error
source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
source§impl From<SysctlError> for Error
impl From<SysctlError> for Error
source§fn from(source: SysctlError) -> Self
fn from(source: SysctlError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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