[][src]Struct logins::login::MirrorLogin

pub(crate) struct MirrorLogin {
    pub login: Login,
    pub is_overridden: bool,
    pub server_modified: ServerTimestamp,
}

Fields

login: Loginis_overridden: boolserver_modified: ServerTimestamp

Implementations

impl MirrorLogin[src]

pub fn guid_str(&self) -> &str[src]

pub(crate) fn from_row(row: &Row<'_>) -> Result<MirrorLogin>[src]

Trait Implementations

impl AsMut<Login> for MirrorLogin[src]

impl AsRef<Login> for MirrorLogin[src]

impl Clone for MirrorLogin[src]

impl Debug for MirrorLogin[src]

impl From<Login> for MirrorLogin[src]

impl From<MirrorLogin> for Login[src]

Auto Trait Implementations

impl RefUnwindSafe for MirrorLogin

impl Send for MirrorLogin

impl Sync for MirrorLogin

impl Unpin for MirrorLogin

impl UnwindSafe for MirrorLogin

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> 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>,