pub struct OperationsFsinfoResponse {
pub features: HashMap<String, bool>,
pub hashes: Vec<String>,
pub metadata_info: Option<Map<String, Value>>,
pub name: String,
pub precision: f64,
pub root: String,
pub string: String,
}Expand description
OperationsFsinfoResponse
JSON schema
{
"type": "object",
"required": [
"Features",
"Hashes",
"Name",
"Precision",
"Root",
"String"
],
"properties": {
"Features": {
"type": "object",
"additionalProperties": {
"type": "boolean"
}
},
"Hashes": {
"type": "array",
"items": {
"type": "string"
}
},
"MetadataInfo": {
"type": [
"object",
"null"
],
"additionalProperties": true
},
"Name": {
"type": "string"
},
"Precision": {
"type": "number"
},
"Root": {
"type": "string"
},
"String": {
"type": "string"
}
}
}Fields§
§features: HashMap<String, bool>§hashes: Vec<String>§metadata_info: Option<Map<String, Value>>§name: String§precision: f64§root: String§string: StringTrait Implementations§
Source§impl Clone for OperationsFsinfoResponse
impl Clone for OperationsFsinfoResponse
Source§fn clone(&self) -> OperationsFsinfoResponse
fn clone(&self) -> OperationsFsinfoResponse
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 OperationsFsinfoResponse
impl Debug for OperationsFsinfoResponse
Source§impl<'de> Deserialize<'de> for OperationsFsinfoResponse
impl<'de> Deserialize<'de> for OperationsFsinfoResponse
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<&OperationsFsinfoResponse> for OperationsFsinfoResponse
impl From<&OperationsFsinfoResponse> for OperationsFsinfoResponse
Source§fn from(value: &OperationsFsinfoResponse) -> Self
fn from(value: &OperationsFsinfoResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsFsinfoResponse
impl RefUnwindSafe for OperationsFsinfoResponse
impl Send for OperationsFsinfoResponse
impl Sync for OperationsFsinfoResponse
impl Unpin for OperationsFsinfoResponse
impl UnwindSafe for OperationsFsinfoResponse
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