[][src]Struct google_urlshortener1::Url

pub struct Url {
    pub status: Option<String>,
    pub analytics: Option<AnalyticsSummary>,
    pub kind: Option<String>,
    pub created: Option<String>,
    pub long_url: Option<String>,
    pub id: Option<String>,
}

There is no detailed description.

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

status: Option<String>

Status of the target URL. Possible values: "OK", "MALWARE", "PHISHING", or "REMOVED". A URL might be marked "REMOVED" if it was flagged as spam, for example.

analytics: Option<AnalyticsSummary>

A summary of the click analytics for the short and long URL. Might not be present if not requested or currently unavailable.

kind: Option<String>

The fixed string "urlshortener#url".

created: Option<String>

Time the short URL was created; ISO 8601 representation using the yyyy-MM-dd'T'HH:mm:ss.SSSZZ format, e.g. "2010-10-14T19:01:24.944+00:00".

long_url: Option<String>

Long URL, e.g. "http://www.google.com/". Might not be present if the status is "REMOVED".

id: Option<String>

Short URL, e.g. "http://goo.gl/l6MS".

Trait Implementations

impl Clone for Url[src]

impl Debug for Url[src]

impl Default for Url[src]

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

impl RequestValue for Url[src]

impl ResponseResult for Url[src]

impl Serialize for Url[src]

Auto Trait Implementations

impl RefUnwindSafe for Url

impl Send for Url

impl Sync for Url

impl Unpin for Url

impl UnwindSafe for Url

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