pub struct AccountUsage {
pub function_count: Option<i64>,
pub total_code_size: Option<i64>,
}
Expand description
The number of functions and amount of storage in use.
Fields§
§function_count: Option<i64>
The number of Lambda functions.
total_code_size: Option<i64>
The amount of storage space, in bytes, that's being used by deployment packages and layer archives.
Trait Implementations§
Source§impl Clone for AccountUsage
impl Clone for AccountUsage
Source§fn clone(&self) -> AccountUsage
fn clone(&self) -> AccountUsage
Returns a duplicate 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 Default for AccountUsage
impl Default for AccountUsage
Source§fn default() -> AccountUsage
fn default() -> AccountUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountUsage
impl<'de> Deserialize<'de> for AccountUsage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AccountUsage
impl PartialEq for AccountUsage
impl StructuralPartialEq for AccountUsage
Auto Trait Implementations§
impl Freeze for AccountUsage
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