[][src]Struct aiven_rs::user::types::AuthenticationMethod

pub struct AuthenticationMethod {
    pub authentication_method_account_id: String,
    pub create_time: String,
    pub currently_active: bool,
    pub delete_time: String,
    pub last_used_time: String,
    pub method_id: String,
    pub name: String,
    pub public_remote_identity: String,
    pub remote_provider_id: String,
    pub state: String,
    pub update_time: String,
    pub user_email: String,
}

Fields

authentication_method_account_id: Stringcreate_time: Stringcurrently_active: booldelete_time: Stringlast_used_time: Stringmethod_id: Stringname: Stringpublic_remote_identity: Stringremote_provider_id: Stringstate: Stringupdate_time: Stringuser_email: String

Trait Implementations

impl Debug for AuthenticationMethod[src]

impl Default for AuthenticationMethod[src]

impl<'de> Deserialize<'de> for AuthenticationMethod[src]

impl Serialize for AuthenticationMethod[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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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