Struct google_discovery1::api::DirectoryListItems[][src]

pub struct DirectoryListItems {
    pub description: Option<String>,
    pub discovery_link: Option<String>,
    pub discovery_rest_url: Option<String>,
    pub documentation_link: Option<String>,
    pub icons: Option<DirectoryListItemsIcons>,
    pub id: Option<String>,
    pub kind: Option<String>,
    pub labels: Option<Vec<String>>,
    pub name: Option<String>,
    pub preferred: Option<bool>,
    pub title: Option<String>,
    pub version: Option<String>,
}

The individual directory entries. One entry per api/version pair.

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

Fields

description: Option<String>

The description of this API.

discovery_link: Option<String>

A link to the discovery document.

discovery_rest_url: Option<String>

The URL for the discovery REST document.

documentation_link: Option<String>

A link to human readable documentation for the API.

icons: Option<DirectoryListItemsIcons>

Links to 16x16 and 32x32 icons representing the API.

id: Option<String>

The id of this API.

kind: Option<String>

The kind for this response.

labels: Option<Vec<String>>

Labels for the status of this API, such as labs or deprecated.

name: Option<String>

The name of the API.

preferred: Option<bool>

True if this version is the preferred version to use.

title: Option<String>

The title of this API.

version: Option<String>

The version of the API.

Trait Implementations

impl Clone for DirectoryListItems[src]

impl Debug for DirectoryListItems[src]

impl Default for DirectoryListItems[src]

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

impl NestedType for DirectoryListItems[src]

impl Part for DirectoryListItems[src]

impl Serialize for DirectoryListItems[src]

Auto Trait Implementations

impl RefUnwindSafe for DirectoryListItems[src]

impl Send for DirectoryListItems[src]

impl Sync for DirectoryListItems[src]

impl Unpin for DirectoryListItems[src]

impl UnwindSafe for DirectoryListItems[src]

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.