pub enum FileSetOwnerError {
InvalidFileDescriptor,
InsufficientPermissions,
ReadOnlyFilesystem,
InvalidId,
IOerror,
Interrupt,
UnknownError(i32),
}Variants§
InvalidFileDescriptor
InsufficientPermissions
ReadOnlyFilesystem
InvalidId
IOerror
Interrupt
UnknownError(i32)
Trait Implementations§
Source§impl Clone for FileSetOwnerError
impl Clone for FileSetOwnerError
Source§fn clone(&self) -> FileSetOwnerError
fn clone(&self) -> FileSetOwnerError
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 FileSetOwnerError
impl Debug for FileSetOwnerError
Source§impl Display for FileSetOwnerError
impl Display for FileSetOwnerError
Source§impl Error for FileSetOwnerError
impl Error for FileSetOwnerError
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<FileSetOwnerError> for FileCreationError
impl From<FileSetOwnerError> for FileCreationError
Source§fn from(v: FileSetOwnerError) -> Self
fn from(v: FileSetOwnerError) -> Self
Converts to this type from the input type.
Source§impl From<FileSetOwnerError> for FileError
impl From<FileSetOwnerError> for FileError
Source§fn from(_: FileSetOwnerError) -> Self
fn from(_: FileSetOwnerError) -> Self
Converts to this type from the input type.
Source§impl Hash for FileSetOwnerError
impl Hash for FileSetOwnerError
Source§impl PartialEq for FileSetOwnerError
impl PartialEq for FileSetOwnerError
impl Copy for FileSetOwnerError
impl Eq for FileSetOwnerError
impl StructuralPartialEq for FileSetOwnerError
Auto Trait Implementations§
impl Freeze for FileSetOwnerError
impl RefUnwindSafe for FileSetOwnerError
impl Send for FileSetOwnerError
impl Sync for FileSetOwnerError
impl Unpin for FileSetOwnerError
impl UnwindSafe for FileSetOwnerError
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