pub enum PendingOp {
Upload {
slot_id: u32,
data: Vec<u8>,
timestamp: u64,
},
Download {
slot_id: u32,
},
}Expand description
Pending cloud operation recorded while offline.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PendingOp
impl RefUnwindSafe for PendingOp
impl Send for PendingOp
impl Sync for PendingOp
impl Unpin for PendingOp
impl UnsafeUnpin for PendingOp
impl UnwindSafe for PendingOp
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