[][src]Enum places::types::SyncStatus

#[repr(u8)]pub enum SyncStatus {
    Unknown,
    New,
    Normal,
}

Re SyncStatus - note that:

Note that some of these values are in schema.rs

Variants

Unknown
New
Normal

Implementations

impl SyncStatus[src]

pub fn from_u8(v: u8) -> Self[src]

Trait Implementations

impl Clone for SyncStatus[src]

impl Copy for SyncStatus[src]

impl Debug for SyncStatus[src]

impl Eq for SyncStatus[src]

impl FromSql for SyncStatus[src]

impl Hash for SyncStatus[src]

impl Ord for SyncStatus[src]

impl PartialEq<SyncStatus> for SyncStatus[src]

impl PartialOrd<SyncStatus> for SyncStatus[src]

impl StructuralEq for SyncStatus[src]

impl StructuralPartialEq for SyncStatus[src]

impl ToSql for SyncStatus[src]

Auto Trait Implementations

impl RefUnwindSafe for SyncStatus

impl Send for SyncStatus

impl Sync for SyncStatus

impl Unpin for SyncStatus

impl UnwindSafe for SyncStatus

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,