pub enum PlannedFileStatus {
Ready,
SkippedMissingSource,
}Expand description
Execution status for a planned file operation.
Variants§
Ready
The operation has an existing source and should run.
SkippedMissingSource
The operation has an optional missing source and should be skipped.
Trait Implementations§
Source§impl Clone for PlannedFileStatus
impl Clone for PlannedFileStatus
Source§fn clone(&self) -> PlannedFileStatus
fn clone(&self) -> PlannedFileStatus
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 PlannedFileStatus
Source§impl Debug for PlannedFileStatus
impl Debug for PlannedFileStatus
impl Eq for PlannedFileStatus
Source§impl PartialEq for PlannedFileStatus
impl PartialEq for PlannedFileStatus
Source§fn eq(&self, other: &PlannedFileStatus) -> bool
fn eq(&self, other: &PlannedFileStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PlannedFileStatus
Auto Trait Implementations§
impl Freeze for PlannedFileStatus
impl RefUnwindSafe for PlannedFileStatus
impl Send for PlannedFileStatus
impl Sync for PlannedFileStatus
impl Unpin for PlannedFileStatus
impl UnsafeUnpin for PlannedFileStatus
impl UnwindSafe for PlannedFileStatus
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