[][src]Struct wallabag_api::types::NewlyRegisteredInfo

pub struct NewlyRegisteredInfo {
    pub id: ID,
    pub username: String,
    pub email: String,
    pub created_at: Option<DateTime<Utc>>,
    pub updated_at: Option<DateTime<Utc>>,
    pub default_client: ClientInfo,
}

A struct representing a newly created user and associated client info.

Fields

id: IDusername: Stringemail: Stringcreated_at: Option<DateTime<Utc>>updated_at: Option<DateTime<Utc>>default_client: ClientInfo

Trait Implementations

impl Debug for NewlyRegisteredInfo[src]

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

impl Serialize for NewlyRegisteredInfo[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: 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.