Struct mailslurp::models::alias_projection::AliasProjection[][src]

pub struct AliasProjection {
    pub created_at: String,
    pub email_address: String,
    pub id: String,
    pub inbox_id: String,
    pub name: Option<String>,
    pub updated_at: String,
    pub use_threads: Option<bool>,
    pub user_id: String,
}

AliasProjection : Representation of a alias

Fields

created_at: Stringemail_address: Stringid: Stringinbox_id: Stringname: Option<String>updated_at: Stringuse_threads: Option<bool>user_id: String

Implementations

impl AliasProjection[src]

pub fn new(
    created_at: String,
    email_address: String,
    id: String,
    inbox_id: String,
    updated_at: String,
    user_id: String
) -> AliasProjection
[src]

Representation of a alias

Trait Implementations

impl Clone for AliasProjection[src]

impl Debug for AliasProjection[src]

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

impl PartialEq<AliasProjection> for AliasProjection[src]

impl Serialize for AliasProjection[src]

impl StructuralPartialEq for AliasProjection[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> Instrument 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.