[][src]Struct google_manufacturers1::Issue

pub struct Issue {
    pub description: Option<String>,
    pub title: Option<String>,
    pub attribute: Option<String>,
    pub destination: Option<String>,
    pub resolution: Option<String>,
    pub timestamp: Option<String>,
    pub type_: Option<String>,
    pub severity: Option<String>,
}

Product issue.

This type is not used in any activity, and only used as part of another schema.

Fields

description: Option<String>

Longer description of the issue focused on how to resolve it.

title: Option<String>

Short title describing the nature of the issue.

attribute: Option<String>

If present, the attribute that triggered the issue. For more information about attributes, see https://support.google.com/manufacturers/answer/6124116.

destination: Option<String>

The destination this issue applies to.

resolution: Option<String>

What needs to happen to resolve the issue.

timestamp: Option<String>

The timestamp when this issue appeared.

type_: Option<String>

The server-generated type of the issue, for example, “INCORRECT_TEXT_FORMATTING”, “IMAGE_NOT_SERVEABLE”, etc.

severity: Option<String>

The severity of the issue.

Trait Implementations

impl Part for Issue[src]

impl Default for Issue[src]

impl Clone for Issue[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Issue[src]

impl Serialize for Issue[src]

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

Auto Trait Implementations

impl Send for Issue

impl Unpin for Issue

impl Sync for Issue

impl UnwindSafe for Issue

impl RefUnwindSafe for Issue

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]