pub struct QuotaInfo {
pub(crate) recent: Result<BTreeMap<String, Vec<QuotaResource>>>,
pub(crate) modified: Time,
}
Expand description
Server quota information with an update timestamp.
Fields§
§recent: Result<BTreeMap<String, Vec<QuotaResource>>>
Recently loaded quota information.
set to Err()
if the provider does not support quota or on other errors,
set to Ok()
for valid quota information.
modified: Time
When the structure was modified.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QuotaInfo
impl RefUnwindSafe for QuotaInfo
impl Send for QuotaInfo
impl Sync for QuotaInfo
impl Unpin for QuotaInfo
impl UnwindSafe for QuotaInfo
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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