pub enum TimeSyncUpdate {
NoChange,
SourceChanged,
}Expand description
Reports whether tracker state changed after processing or pruning sources.
Variants§
NoChange
The active source selection stayed the same.
SourceChanged
The active source selection changed.
Trait Implementations§
Source§impl Clone for TimeSyncUpdate
impl Clone for TimeSyncUpdate
Source§fn clone(&self) -> TimeSyncUpdate
fn clone(&self) -> TimeSyncUpdate
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 moreimpl Copy for TimeSyncUpdate
Source§impl Debug for TimeSyncUpdate
impl Debug for TimeSyncUpdate
impl Eq for TimeSyncUpdate
Source§impl PartialEq for TimeSyncUpdate
impl PartialEq for TimeSyncUpdate
Source§fn eq(&self, other: &TimeSyncUpdate) -> bool
fn eq(&self, other: &TimeSyncUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimeSyncUpdate
Auto Trait Implementations§
impl Freeze for TimeSyncUpdate
impl RefUnwindSafe for TimeSyncUpdate
impl Send for TimeSyncUpdate
impl Sync for TimeSyncUpdate
impl Unpin for TimeSyncUpdate
impl UnsafeUnpin for TimeSyncUpdate
impl UnwindSafe for TimeSyncUpdate
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