Struct ckb_jsonrpc_types::MerkleProof
source · [−]Expand description
Proof of CKB Merkle Tree.
CKB Merkle Tree is a CBMT using CKB blake2b hash as the merge function.
Fields
indices: Vec<Uint32>Leaves indices in the CBMT that are proved present in the block.
These are indices in the CBMT tree not the transaction indices in the block.
lemmas: Vec<H256>Hashes of all siblings along the paths to root.
Trait Implementations
sourceimpl Clone for MerkleProof
impl Clone for MerkleProof
sourcefn clone(&self) -> MerkleProof
fn clone(&self) -> MerkleProof
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for MerkleProof
impl Debug for MerkleProof
sourceimpl Default for MerkleProof
impl Default for MerkleProof
sourcefn default() -> MerkleProof
fn default() -> MerkleProof
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for MerkleProof
impl<'de> Deserialize<'de> for MerkleProof
sourcefn 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
sourceimpl Hash for MerkleProof
impl Hash for MerkleProof
sourceimpl PartialEq<MerkleProof> for MerkleProof
impl PartialEq<MerkleProof> for MerkleProof
sourcefn eq(&self, other: &MerkleProof) -> bool
fn eq(&self, other: &MerkleProof) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &MerkleProof) -> bool
fn ne(&self, other: &MerkleProof) -> bool
This method tests for !=.
sourceimpl Serialize for MerkleProof
impl Serialize for MerkleProof
impl Eq for MerkleProof
impl StructuralEq for MerkleProof
impl StructuralPartialEq for MerkleProof
Auto Trait Implementations
impl RefUnwindSafe for MerkleProof
impl Send for MerkleProof
impl Sync for MerkleProof
impl Unpin for MerkleProof
impl UnwindSafe for MerkleProof
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more