#[non_exhaustive]pub enum Error {
PathIsInvalid(PathBuf),
SecurityContextFormatMismatch,
UnexpectedSecurityContextFormat,
LockPoisoned {
operation: &'static str,
},
IO {
source: Error,
operation: &'static str,
},
IO1Process {
source: Error,
operation: &'static str,
process_id: pid_t,
},
IO1Name {
source: Error,
operation: &'static str,
name: String,
},
IO1Path {
source: Error,
operation: &'static str,
path: PathBuf,
},
NotUTF8(Utf8Error),
IntegerOutOfRange(TryFromIntError),
}
Expand description
Error.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PathIsInvalid(PathBuf)
Path is invalid.
SecurityContextFormatMismatch
Input security contexts have different formats.
UnexpectedSecurityContextFormat
Security context has an expected format.
LockPoisoned
Lock was poisoned.
IO
Input/Output operation failed.
IO1Process
Operation failed on a process.
IO1Name
Operation failed on a named object.
IO1Path
Operation failed on a file system object.
NotUTF8(Utf8Error)
Data is not encoded as UTF-8.
IntegerOutOfRange(TryFromIntError)
Integer is out of valid range.
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<TryFromIntError> for Error
impl From<TryFromIntError> for Error
source§fn from(source: TryFromIntError) -> Self
fn from(source: TryFromIntError) -> 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