[][src]Struct rusoto_groundstation::GetMinuteUsageResponse

pub struct GetMinuteUsageResponse {
    pub estimated_minutes_remaining: Option<i64>,
    pub is_reserved_minutes_customer: Option<bool>,
    pub total_reserved_minute_allocation: Option<i64>,
    pub total_scheduled_minutes: Option<i64>,
    pub upcoming_minutes_scheduled: Option<i64>,
}

Fields

estimated_minutes_remaining: Option<i64>

Estimated number of minutes remaining for an account, specific to the month being requested.

is_reserved_minutes_customer: Option<bool>

Returns whether or not an account has signed up for the reserved minutes pricing plan, specific to the month being requested.

total_reserved_minute_allocation: Option<i64>

Total number of reserved minutes allocated, specific to the month being requested.

total_scheduled_minutes: Option<i64>

Total scheduled minutes for an account, specific to the month being requested.

upcoming_minutes_scheduled: Option<i64>

Upcoming minutes scheduled for an account, specific to the month being requested.

Trait Implementations

impl Clone for GetMinuteUsageResponse[src]

impl Debug for GetMinuteUsageResponse[src]

impl Default for GetMinuteUsageResponse[src]

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

impl PartialEq<GetMinuteUsageResponse> for GetMinuteUsageResponse[src]

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