pub struct QuotaList {
pub value: Vec<Quota>,
pub next_link: Option<String>,
}
Expand description
OData page of quota objects
Fields§
§value: Vec<Quota>
List of quotas
next_link: Option<String>
URL to load the next page of quotas, or null or missing if this is the last page
Implementations§
Trait Implementations§
Source§impl Continuable for QuotaList
impl Continuable for QuotaList
type Continuation = String
fn continuation(&self) -> Option<Self::Continuation>
Source§impl<'de> Deserialize<'de> for QuotaList
impl<'de> Deserialize<'de> for QuotaList
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 StructuralPartialEq for QuotaList
Auto Trait Implementations§
impl Freeze for QuotaList
impl RefUnwindSafe for QuotaList
impl Send for QuotaList
impl Sync for QuotaList
impl Unpin for QuotaList
impl UnwindSafe for QuotaList
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