Struct aws_sdk_lambda::types::AccountUsage
source · #[non_exhaustive]pub struct AccountUsage {
pub total_code_size: i64,
pub function_count: i64,
}
Expand description
The number of functions and amount of storage in use.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.total_code_size: i64
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
function_count: i64
The number of Lambda functions.
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 for AccountUsage
impl PartialEq 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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.