[][src]Struct mailslurp::models::update_inbox_options::UpdateInboxOptions

pub struct UpdateInboxOptions {
    pub description: Option<String>,
    pub expires_at: Option<String>,
    pub favourite: Option<bool>,
    pub name: Option<String>,
    pub tags: Option<Vec<String>>,
}

UpdateInboxOptions : Options for updating inbox properties

Fields

description: Option<String>

Optional description of an inbox for labelling purposes

expires_at: Option<String>

When, if ever, will the inbox expire and be deleted. If null then this inbox is permanent and the emails in it won't be deleted. Timestamp passed as string.

favourite: Option<bool>

Is the inbox favorited. Favouriting inboxes is typically done in the dashboard for quick access

name: Option<String>

Optional name of the inbox. Displayed in the dashboard for easier search

tags: Option<Vec<String>>

Tags that inbox has been tagged with. Tags can be added to inboxes to group different inboxes within an account. You can also search for inboxes by tag in the dashboard UI.

Implementations

impl UpdateInboxOptions[src]

pub fn new() -> UpdateInboxOptions[src]

Options for updating inbox properties

Trait Implementations

impl Clone for UpdateInboxOptions[src]

impl Debug for UpdateInboxOptions[src]

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

impl PartialEq<UpdateInboxOptions> for UpdateInboxOptions[src]

impl Serialize for UpdateInboxOptions[src]

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