pub enum SyncOperation {
Started,
Stopped,
Restarted,
}Expand description
Operation performed by a synchronous wrapper.
Variants§
Started
The object was started and confirmed running.
Stopped
The object was stopped and confirmed stopped.
Restarted
The object was stopped then started.
Trait Implementations§
Source§impl Clone for SyncOperation
impl Clone for SyncOperation
Source§fn clone(&self) -> SyncOperation
fn clone(&self) -> SyncOperation
Returns a duplicate of the value. Read more
1.0.0 · 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 SyncOperation
impl Debug for SyncOperation
Source§impl PartialEq for SyncOperation
impl PartialEq for SyncOperation
impl Copy for SyncOperation
impl Eq for SyncOperation
impl StructuralPartialEq for SyncOperation
Auto Trait Implementations§
impl Freeze for SyncOperation
impl RefUnwindSafe for SyncOperation
impl Send for SyncOperation
impl Sync for SyncOperation
impl Unpin for SyncOperation
impl UnsafeUnpin for SyncOperation
impl UnwindSafe for SyncOperation
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