Struct mailslurp::models::update_domain_options::UpdateDomainOptions[][src]

pub struct UpdateDomainOptions {
    pub catch_all_inbox_id: Option<String>,
}

UpdateDomainOptions : Options for creating a domain to use with MailSlurp. You must have ownership access to this domain in order to verify it. Domains will not functionally currently until the domain has been verified. See https://www.mailslurp.com/guides/custom-domains for help.

Fields

catch_all_inbox_id: Option<String>

Implementations

impl UpdateDomainOptions[src]

pub fn new() -> UpdateDomainOptions[src]

Options for creating a domain to use with MailSlurp. You must have ownership access to this domain in order to verify it. Domains will not functionally currently until the domain has been verified. See https://www.mailslurp.com/guides/custom-domains for help.

Trait Implementations

impl Clone for UpdateDomainOptions[src]

impl Debug for UpdateDomainOptions[src]

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

impl PartialEq<UpdateDomainOptions> for UpdateDomainOptions[src]

impl Serialize for UpdateDomainOptions[src]

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