pub struct HashExistenceResponse {
pub exists: bool,
pub level: usize,
pub position: i64,
pub data_type: String,
pub found_hash: Option<String>,
pub message: Option<String>,
pub error: Option<String>,
}Fields§
§exists: bool§level: usize§position: i64§data_type: String§found_hash: Option<String>§message: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for HashExistenceResponse
impl Clone for HashExistenceResponse
Source§fn clone(&self) -> HashExistenceResponse
fn clone(&self) -> HashExistenceResponse
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 HashExistenceResponse
impl Debug for HashExistenceResponse
Source§impl Default for HashExistenceResponse
impl Default for HashExistenceResponse
Source§fn default() -> HashExistenceResponse
fn default() -> HashExistenceResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HashExistenceResponse
impl<'de> Deserialize<'de> for HashExistenceResponse
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 HashExistenceResponse
impl PartialEq for HashExistenceResponse
Source§fn eq(&self, other: &HashExistenceResponse) -> bool
fn eq(&self, other: &HashExistenceResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HashExistenceResponse
impl Serialize for HashExistenceResponse
impl Eq for HashExistenceResponse
impl StructuralPartialEq for HashExistenceResponse
Auto Trait Implementations§
impl Freeze for HashExistenceResponse
impl RefUnwindSafe for HashExistenceResponse
impl Send for HashExistenceResponse
impl Sync for HashExistenceResponse
impl Unpin for HashExistenceResponse
impl UnsafeUnpin for HashExistenceResponse
impl UnwindSafe for HashExistenceResponse
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