pub struct QuotaUsedSize {
pub assets: Option<QuotaUsedSizeAssets>,
pub git: Option<QuotaUsedSizeGit>,
pub repos: Option<QuotaUsedSizeRepos>,
}Expand description
QuotaUsedSize represents the size-based quota usage of a user
Fields§
§assets: Option<QuotaUsedSizeAssets>§git: Option<QuotaUsedSizeGit>§repos: Option<QuotaUsedSizeRepos>Trait Implementations§
Source§impl Clone for QuotaUsedSize
impl Clone for QuotaUsedSize
Source§fn clone(&self) -> QuotaUsedSize
fn clone(&self) -> QuotaUsedSize
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 QuotaUsedSize
impl Debug for QuotaUsedSize
Source§impl<'de> Deserialize<'de> for QuotaUsedSize
impl<'de> Deserialize<'de> for QuotaUsedSize
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 QuotaUsedSize
impl PartialEq for QuotaUsedSize
Source§impl Serialize for QuotaUsedSize
impl Serialize for QuotaUsedSize
impl StructuralPartialEq for QuotaUsedSize
Auto Trait Implementations§
impl Freeze for QuotaUsedSize
impl RefUnwindSafe for QuotaUsedSize
impl Send for QuotaUsedSize
impl Sync for QuotaUsedSize
impl Unpin for QuotaUsedSize
impl UnwindSafe for QuotaUsedSize
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