pub struct GetQueueElementsResponseValue {
pub account_hash: String,
pub leaf: String,
pub leaf_index: u64,
pub proof: Vec<String>,
pub root: String,
pub root_seq: u64,
pub tree: String,
pub tx_hash: Option<String>,
}
Fields§
§account_hash: String
A 32-byte hash represented as a base58 string.
leaf: String
A 32-byte hash represented as a base58 string.
leaf_index: u64
§proof: Vec<String>
§root: String
A 32-byte hash represented as a base58 string.
root_seq: u64
§tree: String
A 32-byte hash represented as a base58 string.
tx_hash: Option<String>
A 32-byte hash represented as a base58 string.
Implementations§
Trait Implementations§
Source§impl Clone for GetQueueElementsResponseValue
impl Clone for GetQueueElementsResponseValue
Source§fn clone(&self) -> GetQueueElementsResponseValue
fn clone(&self) -> GetQueueElementsResponseValue
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 Default for GetQueueElementsResponseValue
impl Default for GetQueueElementsResponseValue
Source§fn default() -> GetQueueElementsResponseValue
fn default() -> GetQueueElementsResponseValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetQueueElementsResponseValue
impl<'de> Deserialize<'de> for GetQueueElementsResponseValue
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 GetQueueElementsResponseValue
impl PartialEq for GetQueueElementsResponseValue
Source§fn eq(&self, other: &GetQueueElementsResponseValue) -> bool
fn eq(&self, other: &GetQueueElementsResponseValue) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetQueueElementsResponseValue
Auto Trait Implementations§
impl Freeze for GetQueueElementsResponseValue
impl RefUnwindSafe for GetQueueElementsResponseValue
impl Send for GetQueueElementsResponseValue
impl Sync for GetQueueElementsResponseValue
impl Unpin for GetQueueElementsResponseValue
impl UnwindSafe for GetQueueElementsResponseValue
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