[][src]Struct rusoto_mediaconnect::ListEntitlementsResponse

pub struct ListEntitlementsResponse {
    pub entitlements: Option<Vec<ListedEntitlement>>,
    pub next_token: Option<String>,
}

Fields

entitlements: Option<Vec<ListedEntitlement>>

A list of entitlements that have been granted to you from other AWS accounts.

next_token: Option<String>

The token that identifies which batch of results that you want to see. For example, you submit a ListEntitlements request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListEntitlements request a second time and specify the NextToken value.

Trait Implementations

impl Clone for ListEntitlementsResponse[src]

impl Debug for ListEntitlementsResponse[src]

impl Default for ListEntitlementsResponse[src]

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

impl PartialEq<ListEntitlementsResponse> for ListEntitlementsResponse[src]

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