Struct mailslurp::models::thread_projection::ThreadProjection[][src]

pub struct ThreadProjection {
    pub alias_id: String,
    pub bcc: Option<Vec<String>>,
    pub cc: Option<Vec<String>>,
    pub created_at: String,
    pub id: String,
    pub inbox_id: String,
    pub name: Option<String>,
    pub subject: Option<String>,
    pub to: Vec<String>,
    pub updated_at: String,
    pub user_id: String,
}

ThreadProjection : A thread is a message thread created for a message received by an alias

Fields

alias_id: Stringbcc: Option<Vec<String>>cc: Option<Vec<String>>created_at: Stringid: Stringinbox_id: Stringname: Option<String>subject: Option<String>to: Vec<String>updated_at: Stringuser_id: String

Implementations

impl ThreadProjection[src]

pub fn new(
    alias_id: String,
    created_at: String,
    id: String,
    inbox_id: String,
    to: Vec<String>,
    updated_at: String,
    user_id: String
) -> ThreadProjection
[src]

A thread is a message thread created for a message received by an alias

Trait Implementations

impl Clone for ThreadProjection[src]

impl Debug for ThreadProjection[src]

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

impl PartialEq<ThreadProjection> for ThreadProjection[src]

impl Serialize for ThreadProjection[src]

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