pub struct ChainProofPathStep {
pub side: String,
pub hash: String,
}Expand description
Merkle path element for compact chain proofs.
Fields§
§side: String§hash: StringTrait Implementations§
Source§impl Clone for ChainProofPathStep
impl Clone for ChainProofPathStep
Source§fn clone(&self) -> ChainProofPathStep
fn clone(&self) -> ChainProofPathStep
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 Debug for ChainProofPathStep
impl Debug for ChainProofPathStep
Source§impl<'de> Deserialize<'de> for ChainProofPathStep
impl<'de> Deserialize<'de> for ChainProofPathStep
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
Auto Trait Implementations§
impl Freeze for ChainProofPathStep
impl RefUnwindSafe for ChainProofPathStep
impl Send for ChainProofPathStep
impl Sync for ChainProofPathStep
impl Unpin for ChainProofPathStep
impl UnsafeUnpin for ChainProofPathStep
impl UnwindSafe for ChainProofPathStep
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