pub struct ActionsCacheUsageByRepository {
pub full_name: String,
pub active_caches_size_in_bytes: i32,
pub active_caches_count: i32,
}
Expand description
ActionsCacheUsageByRepository : GitHub Actions Cache Usage by repository.
Fields§
§full_name: String
The repository owner and name for the cache usage being shown.
active_caches_size_in_bytes: i32
The sum of the size in bytes of all the active cache items in the repository.
active_caches_count: i32
The number of active caches in the repository.
Implementations§
Trait Implementations§
Source§impl Clone for ActionsCacheUsageByRepository
impl Clone for ActionsCacheUsageByRepository
Source§fn clone(&self) -> ActionsCacheUsageByRepository
fn clone(&self) -> ActionsCacheUsageByRepository
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 ActionsCacheUsageByRepository
impl Default for ActionsCacheUsageByRepository
Source§fn default() -> ActionsCacheUsageByRepository
fn default() -> ActionsCacheUsageByRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsCacheUsageByRepository
impl<'de> Deserialize<'de> for ActionsCacheUsageByRepository
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 ActionsCacheUsageByRepository
impl PartialEq for ActionsCacheUsageByRepository
Source§fn eq(&self, other: &ActionsCacheUsageByRepository) -> bool
fn eq(&self, other: &ActionsCacheUsageByRepository) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActionsCacheUsageByRepository
Auto Trait Implementations§
impl Freeze for ActionsCacheUsageByRepository
impl RefUnwindSafe for ActionsCacheUsageByRepository
impl Send for ActionsCacheUsageByRepository
impl Sync for ActionsCacheUsageByRepository
impl Unpin for ActionsCacheUsageByRepository
impl UnwindSafe for ActionsCacheUsageByRepository
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