pub enum RSyncStatus {
Created(RelativePath),
Updated {
reason: String,
path: RelativePath,
},
AlreadySynced {
reason: String,
path: RelativePath,
},
}Variants§
Trait Implementations§
Source§impl Debug for RSyncStatus
impl Debug for RSyncStatus
Source§impl Ord for RSyncStatus
impl Ord for RSyncStatus
Source§fn cmp(&self, other: &RSyncStatus) -> Ordering
fn cmp(&self, other: &RSyncStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RSyncStatus
impl PartialEq for RSyncStatus
Source§impl PartialOrd for RSyncStatus
impl PartialOrd for RSyncStatus
impl Eq for RSyncStatus
impl StructuralPartialEq for RSyncStatus
Auto Trait Implementations§
impl Freeze for RSyncStatus
impl RefUnwindSafe for RSyncStatus
impl Send for RSyncStatus
impl Sync for RSyncStatus
impl Unpin for RSyncStatus
impl UnwindSafe for RSyncStatus
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