Struct google_digitalassetlinks1::api::CheckResponse[][src]

pub struct CheckResponse {
    pub debug_string: Option<String>,
    pub error_code: Option<Vec<String>>,
    pub linked: Option<bool>,
    pub max_age: Option<String>,
}

Response message for the CheckAssetLinks 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

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.

error_code: Option<Vec<String>>

Error codes that describe the result of the Check operation.

linked: Option<bool>

Set to true if the assets specified in the request are linked by the relation specified in the request.

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 CheckResponse[src]

impl Debug for CheckResponse[src]

impl Default for CheckResponse[src]

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

impl ResponseResult for CheckResponse[src]

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