pub struct OperationsAboutResponse {
pub free: f64,
pub objects: Option<f64>,
pub other: Option<f64>,
pub total: f64,
pub trashed: Option<f64>,
pub used: f64,
}Expand description
OperationsAboutResponse
JSON schema
{
"type": "object",
"required": [
"free",
"total",
"used"
],
"properties": {
"free": {
"type": "number"
},
"objects": {
"type": "number"
},
"other": {
"type": "number"
},
"total": {
"type": "number"
},
"trashed": {
"type": "number"
},
"used": {
"type": "number"
}
}
}Fields§
§free: f64§objects: Option<f64>§other: Option<f64>§total: f64§trashed: Option<f64>§used: f64Trait Implementations§
Source§impl Clone for OperationsAboutResponse
impl Clone for OperationsAboutResponse
Source§fn clone(&self) -> OperationsAboutResponse
fn clone(&self) -> OperationsAboutResponse
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 OperationsAboutResponse
impl Debug for OperationsAboutResponse
Source§impl<'de> Deserialize<'de> for OperationsAboutResponse
impl<'de> Deserialize<'de> for OperationsAboutResponse
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 From<&OperationsAboutResponse> for OperationsAboutResponse
impl From<&OperationsAboutResponse> for OperationsAboutResponse
Source§fn from(value: &OperationsAboutResponse) -> Self
fn from(value: &OperationsAboutResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsAboutResponse
impl RefUnwindSafe for OperationsAboutResponse
impl Send for OperationsAboutResponse
impl Sync for OperationsAboutResponse
impl Unpin for OperationsAboutResponse
impl UnwindSafe for OperationsAboutResponse
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