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