pub struct ActionsCacheUsageOrgEnterprise {
pub total_active_caches_count: i32,
pub total_active_caches_size_in_bytes: i32,
}
Fields§
§total_active_caches_count: i32
The count of active caches across all repositories of an enterprise or an organization.
total_active_caches_size_in_bytes: i32
The total size in bytes of all active cache items across all repositories of an enterprise or an organization.
Implementations§
Source§impl ActionsCacheUsageOrgEnterprise
impl ActionsCacheUsageOrgEnterprise
pub fn new( total_active_caches_count: i32, total_active_caches_size_in_bytes: i32, ) -> ActionsCacheUsageOrgEnterprise
Trait Implementations§
Source§impl Clone for ActionsCacheUsageOrgEnterprise
impl Clone for ActionsCacheUsageOrgEnterprise
Source§fn clone(&self) -> ActionsCacheUsageOrgEnterprise
fn clone(&self) -> ActionsCacheUsageOrgEnterprise
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 Default for ActionsCacheUsageOrgEnterprise
impl Default for ActionsCacheUsageOrgEnterprise
Source§fn default() -> ActionsCacheUsageOrgEnterprise
fn default() -> ActionsCacheUsageOrgEnterprise
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsCacheUsageOrgEnterprise
impl<'de> Deserialize<'de> for ActionsCacheUsageOrgEnterprise
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 ActionsCacheUsageOrgEnterprise
impl PartialEq for ActionsCacheUsageOrgEnterprise
Source§fn eq(&self, other: &ActionsCacheUsageOrgEnterprise) -> bool
fn eq(&self, other: &ActionsCacheUsageOrgEnterprise) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActionsCacheUsageOrgEnterprise
Auto Trait Implementations§
impl Freeze for ActionsCacheUsageOrgEnterprise
impl RefUnwindSafe for ActionsCacheUsageOrgEnterprise
impl Send for ActionsCacheUsageOrgEnterprise
impl Sync for ActionsCacheUsageOrgEnterprise
impl Unpin for ActionsCacheUsageOrgEnterprise
impl UnwindSafe for ActionsCacheUsageOrgEnterprise
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