[][src]Struct rusoto_marketplace_catalog::EntitySummary

pub struct EntitySummary {
    pub entity_arn: Option<String>,
    pub entity_id: Option<String>,
    pub entity_type: Option<String>,
    pub last_modified_date: Option<String>,
    pub name: Option<String>,
    pub visibility: Option<String>,
}

This object is a container for common summary information about the entity. The summary doesn't contain the whole entity structure, but it does contain information common across all entities.

Fields

entity_arn: Option<String>

The ARN associated with the unique identifier for the entity.

entity_id: Option<String>

The unique identifier for the entity.

entity_type: Option<String>

The type of the entity.

last_modified_date: Option<String>

The last time the entity was published, using ISO 8601 format (2018-02-27T13:45:22Z).

name: Option<String>

The name for the entity. This value is not unique. It is defined by the seller.

visibility: Option<String>

The visibility status of the entity to buyers. This value can be Public (everyone can view the entity), Limited (the entity is visible to limited accounts only), or Restricted (the entity was published and then unpublished and only existing buyers can view it).

Trait Implementations

impl Clone for EntitySummary[src]

impl Debug for EntitySummary[src]

impl Default for EntitySummary[src]

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

impl PartialEq<EntitySummary> for EntitySummary[src]

impl StructuralPartialEq for EntitySummary[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.