pub struct OperationsSizeResponse {
pub bytes: f64,
pub count: i64,
pub sizeless: i64,
}Expand description
OperationsSizeResponse
JSON schema
{
"type": "object",
"required": [
"bytes",
"count",
"sizeless"
],
"properties": {
"bytes": {
"type": "number"
},
"count": {
"type": "integer"
},
"sizeless": {
"type": "integer"
}
}
}Fields§
§bytes: f64§count: i64§sizeless: i64Trait Implementations§
Source§impl Clone for OperationsSizeResponse
impl Clone for OperationsSizeResponse
Source§fn clone(&self) -> OperationsSizeResponse
fn clone(&self) -> OperationsSizeResponse
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 OperationsSizeResponse
impl Debug for OperationsSizeResponse
Source§impl<'de> Deserialize<'de> for OperationsSizeResponse
impl<'de> Deserialize<'de> for OperationsSizeResponse
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<&OperationsSizeResponse> for OperationsSizeResponse
impl From<&OperationsSizeResponse> for OperationsSizeResponse
Source§fn from(value: &OperationsSizeResponse) -> Self
fn from(value: &OperationsSizeResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsSizeResponse
impl RefUnwindSafe for OperationsSizeResponse
impl Send for OperationsSizeResponse
impl Sync for OperationsSizeResponse
impl Unpin for OperationsSizeResponse
impl UnwindSafe for OperationsSizeResponse
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