[][src]Struct ironoxide::user::UserResult

pub struct UserResult { /* fields omitted */ }

Metadata for a user.

Result from user_verify.

Implementations

impl UserResult[src]

pub fn account_id(&self) -> &UserId[src]

ID of the user

pub fn user_public_key(&self) -> &PublicKey[src]

Public key of the user

pub fn segment_id(&self) -> usize[src]

Segment ID for the user

pub fn needs_rotation(&self) -> bool[src]

Whether the user's private key needs rotation

Trait Implementations

impl Clone for UserResult[src]

impl Debug for UserResult[src]

impl Eq for UserResult[src]

impl Hash for UserResult[src]

impl PartialEq<UserResult> for UserResult[src]

impl StructuralEq for UserResult[src]

impl StructuralPartialEq for UserResult[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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