pub enum FileErrorKind {
FileNotFound,
PermissionDenied,
AlreadyExists,
CannotDiffPath(String, String),
Unknown(String),
OsStrErr(OsString),
}Variants§
FileNotFound
PermissionDenied
AlreadyExists
CannotDiffPath(String, String)
Unknown(String)
OsStrErr(OsString)
Trait Implementations§
Source§impl Clone for FileErrorKind
impl Clone for FileErrorKind
Source§fn clone(&self) -> FileErrorKind
fn clone(&self) -> FileErrorKind
Returns a copy 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 FileErrorKind
impl Debug for FileErrorKind
Source§impl PartialEq for FileErrorKind
impl PartialEq for FileErrorKind
impl StructuralPartialEq for FileErrorKind
Auto Trait Implementations§
impl Freeze for FileErrorKind
impl RefUnwindSafe for FileErrorKind
impl Send for FileErrorKind
impl Sync for FileErrorKind
impl Unpin for FileErrorKind
impl UnwindSafe for FileErrorKind
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