pub struct ChainProof {
pub entry_id: String,
pub entry_hash: String,
pub path: Vec<ChainProofStep>,
}Expand description
Chain proof for verification
Fields§
§entry_id: String§entry_hash: String§path: Vec<ChainProofStep>Trait Implementations§
Source§impl Clone for ChainProof
impl Clone for ChainProof
Source§fn clone(&self) -> ChainProof
fn clone(&self) -> ChainProof
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 ChainProof
impl Debug for ChainProof
Source§impl<'de> Deserialize<'de> for ChainProof
impl<'de> Deserialize<'de> for ChainProof
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 ChainProof
impl RefUnwindSafe for ChainProof
impl Send for ChainProof
impl Sync for ChainProof
impl Unpin for ChainProof
impl UnsafeUnpin for ChainProof
impl UnwindSafe for ChainProof
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