Enum gcs_rsync::sync::RSyncStatus
source · 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<RSyncStatus> for RSyncStatus
impl PartialEq<RSyncStatus> for RSyncStatus
source§fn eq(&self, other: &RSyncStatus) -> bool
fn eq(&self, other: &RSyncStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<RSyncStatus> for RSyncStatus
impl PartialOrd<RSyncStatus> for RSyncStatus
source§fn partial_cmp(&self, other: &RSyncStatus) -> Option<Ordering>
fn partial_cmp(&self, other: &RSyncStatus) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Eq for RSyncStatus
impl StructuralEq for RSyncStatus
impl StructuralPartialEq for RSyncStatus
Auto Trait Implementations§
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.