pub struct OperationsHashsumfileResponse {
pub hash: String,
pub hash_type: String,
}Expand description
OperationsHashsumfileResponse
JSON schema
{
"type": "object",
"required": [
"hash",
"hashType"
],
"properties": {
"hash": {
"description": "The hash value of the file.",
"type": "string"
},
"hashType": {
"description": "The hash algorithm that was used.",
"type": "string"
}
}
}Fields§
§hash: StringThe hash value of the file.
hash_type: StringThe hash algorithm that was used.
Trait Implementations§
Source§impl Clone for OperationsHashsumfileResponse
impl Clone for OperationsHashsumfileResponse
Source§fn clone(&self) -> OperationsHashsumfileResponse
fn clone(&self) -> OperationsHashsumfileResponse
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<'de> Deserialize<'de> for OperationsHashsumfileResponse
impl<'de> Deserialize<'de> for OperationsHashsumfileResponse
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<&OperationsHashsumfileResponse> for OperationsHashsumfileResponse
impl From<&OperationsHashsumfileResponse> for OperationsHashsumfileResponse
Source§fn from(value: &OperationsHashsumfileResponse) -> Self
fn from(value: &OperationsHashsumfileResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OperationsHashsumfileResponse
impl RefUnwindSafe for OperationsHashsumfileResponse
impl Send for OperationsHashsumfileResponse
impl Sync for OperationsHashsumfileResponse
impl Unpin for OperationsHashsumfileResponse
impl UnwindSafe for OperationsHashsumfileResponse
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