pub struct PackagesBillingUsage {
pub total_gigabytes_bandwidth_used: i32,
pub total_paid_gigabytes_bandwidth_used: i32,
pub included_gigabytes_bandwidth: i32,
}
Fields§
§total_gigabytes_bandwidth_used: i32
Sum of the free and paid storage space (GB) for GitHuub Packages.
total_paid_gigabytes_bandwidth_used: i32
Total paid storage space (GB) for GitHuub Packages.
included_gigabytes_bandwidth: i32
Free storage space (GB) for GitHub Packages.
Implementations§
Trait Implementations§
Source§impl Clone for PackagesBillingUsage
impl Clone for PackagesBillingUsage
Source§fn clone(&self) -> PackagesBillingUsage
fn clone(&self) -> PackagesBillingUsage
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 PackagesBillingUsage
impl Debug for PackagesBillingUsage
Source§impl Default for PackagesBillingUsage
impl Default for PackagesBillingUsage
Source§fn default() -> PackagesBillingUsage
fn default() -> PackagesBillingUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PackagesBillingUsage
impl<'de> Deserialize<'de> for PackagesBillingUsage
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 PackagesBillingUsage
impl PartialEq for PackagesBillingUsage
Source§impl Serialize for PackagesBillingUsage
impl Serialize for PackagesBillingUsage
impl StructuralPartialEq for PackagesBillingUsage
Auto Trait Implementations§
impl Freeze for PackagesBillingUsage
impl RefUnwindSafe for PackagesBillingUsage
impl Send for PackagesBillingUsage
impl Sync for PackagesBillingUsage
impl Unpin for PackagesBillingUsage
impl UnwindSafe for PackagesBillingUsage
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