pub enum SyncJob {
Push {
link_id: String,
},
Pull {
link_id: String,
},
}Expand description
A job dispatched to a daemon worker.
Variants§
Push
Push local changes for the given link to the remote.
Pull
Pull remote changes for the given link to the local directory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SyncJob
impl RefUnwindSafe for SyncJob
impl Send for SyncJob
impl Sync for SyncJob
impl Unpin for SyncJob
impl UnsafeUnpin for SyncJob
impl UnwindSafe for SyncJob
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