pub enum PaSyncState {
NotSynced = 0,
SyncInfoRequest = 1,
Synced = 2,
FailedToSync = 3,
NoPast = 4,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PaSyncState
impl Clone for PaSyncState
Source§fn clone(&self) -> PaSyncState
fn clone(&self) -> PaSyncState
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 PaSyncState
impl Debug for PaSyncState
Source§impl From<PaSyncState> for u8
impl From<PaSyncState> for u8
Source§fn from(v: PaSyncState) -> u8
fn from(v: PaSyncState) -> u8
Converts to this type from the input type.
Source§impl Hash for PaSyncState
impl Hash for PaSyncState
Source§impl PartialEq for PaSyncState
impl PartialEq for PaSyncState
Source§impl TryFrom<u8> for PaSyncState
impl TryFrom<u8> for PaSyncState
impl Copy for PaSyncState
impl Eq for PaSyncState
impl StructuralPartialEq for PaSyncState
Auto Trait Implementations§
impl Freeze for PaSyncState
impl RefUnwindSafe for PaSyncState
impl Send for PaSyncState
impl Sync for PaSyncState
impl Unpin for PaSyncState
impl UnwindSafe for PaSyncState
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