pub enum SyncIntent {
None,
Interactive,
Background {
delay_ms: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for SyncIntent
impl Clone for SyncIntent
Source§fn clone(&self) -> SyncIntent
fn clone(&self) -> SyncIntent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SyncIntent
impl Debug for SyncIntent
Auto Trait Implementations§
impl Freeze for SyncIntent
impl RefUnwindSafe for SyncIntent
impl Send for SyncIntent
impl Sync for SyncIntent
impl Unpin for SyncIntent
impl UnsafeUnpin for SyncIntent
impl UnwindSafe for SyncIntent
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