[][src]Struct rusoto_marketplace_catalog::ChangeSummary

pub struct ChangeSummary {
    pub change_type: Option<String>,
    pub details: Option<String>,
    pub entity: Option<Entity>,
    pub error_detail_list: Option<Vec<ErrorDetail>>,
}

This object is a container for common summary information about the change. The summary doesn't contain the whole change structure.

Fields

change_type: Option<String>

The type of the change.

details: Option<String>

This object contains details specific to the change type of the requested change.

entity: Option<Entity>

The entity to be changed.

error_detail_list: Option<Vec<ErrorDetail>>

An array of ErrorDetail objects associated with the change.

Trait Implementations

impl Clone for ChangeSummary[src]

impl Debug for ChangeSummary[src]

impl Default for ChangeSummary[src]

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

impl PartialEq<ChangeSummary> for ChangeSummary[src]

impl StructuralPartialEq for ChangeSummary[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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.