[][src]Struct rusoto_marketplace_catalog::Sort

pub struct Sort {
    pub sort_by: Option<String>,
    pub sort_order: Option<String>,
}

An object that contains two attributes, SortBy and SortOrder.

Fields

sort_by: Option<String>

For ListEntities, supported attributes include LastModifiedDate (default), Visibility, EntityId, and Name.

For ListChangeSets, supported attributes include StartTime and EndTime.

sort_order: Option<String>

The sorting order. Can be ASCENDING or DESCENDING. The default value is DESCENDING.

Trait Implementations

impl Clone for Sort[src]

impl Debug for Sort[src]

impl Default for Sort[src]

impl PartialEq<Sort> for Sort[src]

impl Serialize for Sort[src]

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