[][src]Struct gcp_client::google::cloud::support::common::issue_taxonomy::Component

pub struct Component {
    pub display_name: String,
    pub languages: Vec<String>,
    pub template: String,
    pub subcomponents: Vec<Component>,
}

The representation of a product component. It is composed of a canonical name for the product (e.g., Google App Engine), languages in which a support ticket can be created under this component, a template that provides hints on important details to be filled out before submitting a case. It also contains an embedded list of product subcomponents that have similar attributes as top-level components. (e.g., Google App Engine > Memcache).

Fields

display_name: String

User friendly name of this component.

languages: Vec<String>

List of languages in which a support case can be created under this component. Represented by language codes in ISO_639-1 standard.

template: String

Template to be used while filling the description of a support case.

subcomponents: Vec<Component>

List of subcomponents under this component.

Trait Implementations

impl Clone for Component[src]

impl Debug for Component[src]

impl Default for Component[src]

impl Message for Component[src]

impl PartialEq<Component> for Component[src]

impl StructuralPartialEq for Component[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> 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> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]