Struct aws_sdk_lambda::types::AccountUsage
source · #[non_exhaustive]pub struct AccountUsage { /* private fields */ }Expand description
The number of functions and amount of storage in use.
Implementations§
source§impl AccountUsage
impl AccountUsage
sourcepub fn total_code_size(&self) -> i64
pub fn total_code_size(&self) -> i64
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
sourcepub fn function_count(&self) -> i64
pub fn function_count(&self) -> i64
The number of Lambda functions.
source§impl AccountUsage
impl AccountUsage
sourcepub fn builder() -> AccountUsageBuilder
pub fn builder() -> AccountUsageBuilder
Creates a new builder-style object to manufacture AccountUsage.
Trait Implementations§
source§impl Clone for AccountUsage
impl Clone for AccountUsage
source§fn clone(&self) -> AccountUsage
fn clone(&self) -> AccountUsage
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for AccountUsage
impl Debug for AccountUsage
source§impl PartialEq<AccountUsage> for AccountUsage
impl PartialEq<AccountUsage> for AccountUsage
source§fn eq(&self, other: &AccountUsage) -> bool
fn eq(&self, other: &AccountUsage) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AccountUsage
Auto Trait Implementations§
impl RefUnwindSafe for AccountUsage
impl Send for AccountUsage
impl Sync for AccountUsage
impl Unpin for AccountUsage
impl UnwindSafe for AccountUsage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more