Struct rusoto_marketplace_entitlement::GetEntitlementsResult[][src]

pub struct GetEntitlementsResult {
    pub entitlements: Option<Vec<Entitlement>>,
    pub next_token: Option<String>,
}

The GetEntitlementsRequest contains results from the GetEntitlements operation.

Fields

The set of entitlements found through the GetEntitlements operation. If the result contains an empty set of entitlements, NextToken might still be present and should be used.

For paginated results, use NextToken in subsequent calls to GetEntitlements. If the result contains an empty set of entitlements, NextToken might still be present and should be used.

Trait Implementations

impl Default for GetEntitlementsResult
[src]

Returns the "default value" for a type. Read more

impl Debug for GetEntitlementsResult
[src]

Formats the value using the given formatter. Read more

impl Clone for GetEntitlementsResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetEntitlementsResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations