pub struct OperationsHashsumResponse {
pub hash_type: String,
pub hashsum: Vec<String>,
}Expand description
OperationsHashsumResponse
JSON schema
{
"type": "object",
"required": [
"hashType",
"hashsum"
],
"properties": {
"hashType": {
"type": "string"
},
"hashsum": {
"type": "array",
"items": {
"type": "string"
}
}
}
}Fields§
§hash_type: String§hashsum: Vec<String>Trait Implementations§
Source§impl Clone for OperationsHashsumResponse
impl Clone for OperationsHashsumResponse
Source§fn clone(&self) -> OperationsHashsumResponse
fn clone(&self) -> OperationsHashsumResponse
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 OperationsHashsumResponse
impl Debug for OperationsHashsumResponse
Source§impl<'de> Deserialize<'de> for OperationsHashsumResponse
impl<'de> Deserialize<'de> for OperationsHashsumResponse
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<&OperationsHashsumResponse> for OperationsHashsumResponse
impl From<&OperationsHashsumResponse> for OperationsHashsumResponse
Source§fn from(value: &OperationsHashsumResponse) -> Self
fn from(value: &OperationsHashsumResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsHashsumResponse
impl RefUnwindSafe for OperationsHashsumResponse
impl Send for OperationsHashsumResponse
impl Sync for OperationsHashsumResponse
impl Unpin for OperationsHashsumResponse
impl UnwindSafe for OperationsHashsumResponse
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