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

pub struct AccessToken {
    pub create_time: String,
    pub created_manually: bool,
    pub currently_active: bool,
    pub description: Option<String>,
    pub expiry_time: Option<String>,
    pub extend_when_used: bool,
    pub full_token: Option<String>,
    pub last_ip: Option<String>,
    pub last_used_time: Option<String>,
    pub last_user_agent: Option<String>,
    pub last_user_agent_human_readable: Option<String>,
    pub max_age_seconds: Option<i64>,
    pub token_prefix: Option<String>,
}

Fields

create_time: Stringcreated_manually: boolcurrently_active: booldescription: Option<String>expiry_time: Option<String>extend_when_used: boolfull_token: Option<String>last_ip: Option<String>last_used_time: Option<String>last_user_agent: Option<String>last_user_agent_human_readable: Option<String>max_age_seconds: Option<i64>token_prefix: Option<String>

Trait Implementations

impl Debug for AccessToken[src]

impl Default for AccessToken[src]

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

impl Serialize for AccessToken[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>,