pub struct SingleHashResponse {
pub success: bool,
pub message: String,
pub data_type: String,
pub data_item: String,
pub computed_hash_hex: String,
pub timeuuid_hex: String,
pub data_type_hex: String,
pub data_item_hex: String,
}Fields§
§success: bool§message: String§data_type: String§data_item: String§computed_hash_hex: String§timeuuid_hex: String§data_type_hex: String§data_item_hex: StringTrait Implementations§
Source§impl Clone for SingleHashResponse
impl Clone for SingleHashResponse
Source§fn clone(&self) -> SingleHashResponse
fn clone(&self) -> SingleHashResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SingleHashResponse
impl Debug for SingleHashResponse
Source§impl Default for SingleHashResponse
impl Default for SingleHashResponse
Source§fn default() -> SingleHashResponse
fn default() -> SingleHashResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SingleHashResponse
impl<'de> Deserialize<'de> for SingleHashResponse
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 PartialEq for SingleHashResponse
impl PartialEq for SingleHashResponse
Source§fn eq(&self, other: &SingleHashResponse) -> bool
fn eq(&self, other: &SingleHashResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SingleHashResponse
impl Serialize for SingleHashResponse
impl Eq for SingleHashResponse
impl StructuralPartialEq for SingleHashResponse
Auto Trait Implementations§
impl Freeze for SingleHashResponse
impl RefUnwindSafe for SingleHashResponse
impl Send for SingleHashResponse
impl Sync for SingleHashResponse
impl Unpin for SingleHashResponse
impl UnsafeUnpin for SingleHashResponse
impl UnwindSafe for SingleHashResponse
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