[][src]Struct google_domainsrdap1::Notice

pub struct Notice {
    pub type_: Option<String>,
    pub description: Option<Vec<String>>,
    pub links: Option<Vec<Link>>,
    pub title: Option<String>,
}

Notices object defined in section 4.3 of RFC 7483.

This type is not used in any activity, and only used as part of another schema.

Fields

type_: Option<String>

Type values defined in section 10.2.1 of RFC 7483 specific to a whole response: "result set truncated due to authorization", "result set truncated due to excessive load", "result set truncated due to unexplainable reasons".

description: Option<Vec<String>>

Description of the notice.

links: Option<Vec<Link>>

Link to a document containing more information.

title: Option<String>

Title of a notice. Example: "Terms of Service".

Trait Implementations

impl Clone for Notice[src]

impl Debug for Notice[src]

impl Default for Notice[src]

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

impl Part for Notice[src]

impl Serialize for Notice[src]

Auto Trait Implementations

impl RefUnwindSafe for Notice

impl Send for Notice

impl Sync for Notice

impl Unpin for Notice

impl UnwindSafe for Notice

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.

impl<T> Typeable for T where
    T: Any