[][src]Struct mailslurp::models::describe_mail_server_domain_result::DescribeMailServerDomainResult

pub struct DescribeMailServerDomainResult {
    pub domain: String,
    pub message: Option<String>,
    pub mx_records: Vec<NameServerRecord>,
}

DescribeMailServerDomainResult : Name Server lookup result

Fields

domain: Stringmessage: Option<String>mx_records: Vec<NameServerRecord>

Implementations

impl DescribeMailServerDomainResult[src]

pub fn new(
    domain: String,
    mx_records: Vec<NameServerRecord>
) -> DescribeMailServerDomainResult
[src]

Name Server lookup result

Trait Implementations

impl Clone for DescribeMailServerDomainResult[src]

impl Debug for DescribeMailServerDomainResult[src]

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

impl PartialEq<DescribeMailServerDomainResult> for DescribeMailServerDomainResult[src]

impl Serialize for DescribeMailServerDomainResult[src]

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