pub enum FsErrorKind {
OutOfSpace,
Other,
}Expand description
Why a filesystem write failed, so the executor can treat a full disk as a systemic abort rather than one more skippable per-clip fault.
Variants§
OutOfSpace
The device or quota ran out of space.
Other
Any other failure (permission, missing parent, corruption).
Trait Implementations§
Source§impl Clone for FsErrorKind
impl Clone for FsErrorKind
Source§fn clone(&self) -> FsErrorKind
fn clone(&self) -> FsErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FsErrorKind
Source§impl Debug for FsErrorKind
impl Debug for FsErrorKind
impl Eq for FsErrorKind
Source§impl PartialEq for FsErrorKind
impl PartialEq for FsErrorKind
Source§fn eq(&self, other: &FsErrorKind) -> bool
fn eq(&self, other: &FsErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FsErrorKind
Auto Trait Implementations§
impl Freeze for FsErrorKind
impl RefUnwindSafe for FsErrorKind
impl Send for FsErrorKind
impl Sync for FsErrorKind
impl Unpin for FsErrorKind
impl UnsafeUnpin for FsErrorKind
impl UnwindSafe for FsErrorKind
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