[][src]Struct google_digitalassetlinks1::ListResponse

pub struct ListResponse {
    pub error_code: Option<Vec<String>>,
    pub statements: Option<Vec<Statement>>,
    pub debug_string: Option<String>,
    pub max_age: Option<String>,
}

Response message for the List call.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

error_code: Option<Vec<String>>

Error codes that describe the result of the List operation.

statements: Option<Vec<Statement>>

A list of all the matching statements that have been found.

debug_string: Option<String>

Human-readable message containing information intended to help end users understand, reproduce and debug the result.

The message will be in English and we are currently not planning to offer any translations.

Please note that no guarantees are made about the contents or format of this string. Any aspect of it may be subject to change without notice. You should not attempt to programmatically parse this data. For programmatic access, use the error_code field below.

max_age: Option<String>

From serving time, how much longer the response should be considered valid barring further updates. REQUIRED

Trait Implementations

impl Clone for ListResponse[src]

impl Debug for ListResponse[src]

impl Default for ListResponse[src]

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

impl ResponseResult for ListResponse[src]

impl Serialize for ListResponse[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.

impl<T> Typeable for T where
    T: Any