Struct rusoto_lambda::AccountUsage[][src]

pub struct AccountUsage {
    pub function_count: Option<i64>,
    pub total_code_size: Option<i64>,
}

Provides code size usage and function count associated with the current account and region.

Fields

The number of your account's existing functions per region.

Total size, in bytes, of the account's deployment packages per region.

Trait Implementations

impl Default for AccountUsage
[src]

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

impl Debug for AccountUsage
[src]

Formats the value using the given formatter. Read more

impl Clone for AccountUsage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AccountUsage
[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