Struct google_mybusiness4::api::Chain[][src]

pub struct Chain {
    pub chain_names: Option<Vec<ChainName>>,
    pub location_count: Option<i32>,
    pub name: Option<String>,
    pub websites: Option<Vec<ChainUrl>>,
}

A chain is a brand that your business’s locations can be affiliated with.

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

chain_names: Option<Vec<ChainName>>

Names of the chain.

location_count: Option<i32>

Number of locations that are part of this chain.

name: Option<String>

The chain’s resource name, in the format chains/{chain_place_id}.

websites: Option<Vec<ChainUrl>>

Websites of the chain.

Trait Implementations

impl Clone for Chain[src]

impl Debug for Chain[src]

impl Default for Chain[src]

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

impl Resource for Chain[src]

impl ResponseResult for Chain[src]

impl Serialize for Chain[src]

Auto Trait Implementations

impl RefUnwindSafe for Chain

impl Send for Chain

impl Sync for Chain

impl Unpin for Chain

impl UnwindSafe for Chain

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.