pub enum CloudSyncStatus {
Ok {
count: usize,
},
Failed {
message: String,
},
}Expand description
Cloud sync status from the last flush attempt.
Variants§
Auto Trait Implementations§
impl Freeze for CloudSyncStatus
impl RefUnwindSafe for CloudSyncStatus
impl Send for CloudSyncStatus
impl Sync for CloudSyncStatus
impl Unpin for CloudSyncStatus
impl UnsafeUnpin for CloudSyncStatus
impl UnwindSafe for CloudSyncStatus
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