pub struct QuotaEntry {
pub limit: u32,
pub used: u32,
}Fields§
§limit: u32§used: u32Trait Implementations§
Source§impl Clone for QuotaEntry
impl Clone for QuotaEntry
Source§fn clone(&self) -> QuotaEntry
fn clone(&self) -> QuotaEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 QuotaEntry
impl Debug for QuotaEntry
Source§impl<'de> Deserialize<'de> for QuotaEntry
impl<'de> Deserialize<'de> for QuotaEntry
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
impl Eq for QuotaEntry
Source§impl PartialEq for QuotaEntry
impl PartialEq for QuotaEntry
Source§fn eq(&self, other: &QuotaEntry) -> bool
fn eq(&self, other: &QuotaEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QuotaEntry
impl Serialize for QuotaEntry
impl StructuralPartialEq for QuotaEntry
Auto Trait Implementations§
impl Freeze for QuotaEntry
impl RefUnwindSafe for QuotaEntry
impl Send for QuotaEntry
impl Sync for QuotaEntry
impl Unpin for QuotaEntry
impl UnsafeUnpin for QuotaEntry
impl UnwindSafe for QuotaEntry
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