Struct arber::MerkleProof[][src]

pub struct MerkleProof {
    pub mmr_size: u64,
    pub path: Vec<Hash>,
}

Fields

mmr_size: u64path: Vec<Hash>

Implementations

impl MerkleProof[src]

pub fn new() -> MerkleProof[src]

pub fn verify(
    &self,
    root: Hash,
    elem: &dyn Hashable,
    pos: u64
) -> Result<bool, Error>
[src]

Verfiy that elem is a MMR node at positon pos given the root hash root.

Trait Implementations

impl Clone for MerkleProof[src]

fn clone(&self) -> MerkleProof[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for MerkleProof[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Decode for MerkleProof[src]

fn decode<__CodecInputEdqy: Input>(
    __codec_input_edqy: &mut __CodecInputEdqy
) -> Result<Self, Error>
[src]

Attempt to deserialise the value from input.

fn skip<I>(input: &mut I) -> Result<(), Error> where
    I: Input
[src]

Attempt to skip the encoded value from input. Read more

fn encoded_fixed_size() -> Option<usize>[src]

Returns the fixed encoded size of the type. Read more

impl Default for MerkleProof[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Encode for MerkleProof[src]

fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
    &self,
    __codec_dest_edqy: &mut __CodecOutputEdqy
)
[src]

Convert self to a slice and append it to the destination.

fn size_hint(&self) -> usize[src]

If possible give a hint of expected size of the encoding. Read more

fn encode(&self) -> Vec<u8, Global>[src]

Convert self to an owned vector.

fn using_encoded<R, F>(&self, f: F) -> R where
    F: FnOnce(&[u8]) -> R, 
[src]

Convert self to a slice and then invoke the given closure with it.

fn encoded_size(&self) -> usize[src]

Calculates the encoded size. Read more

impl PartialEq<MerkleProof> for MerkleProof[src]

fn eq(&self, other: &MerkleProof) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &MerkleProof) -> bool[src]

This method tests for !=.

impl EncodeLike<MerkleProof> for MerkleProof[src]

impl StructuralPartialEq for MerkleProof[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> DecodeAll for T where
    T: Decode
[src]

pub fn decode_all(input: &[u8]) -> Result<T, Error>[src]

Decode Self and consume all of the given input data. Read more

impl<T> DecodeLimit for T where
    T: Decode
[src]

pub fn decode_all_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]

Decode Self and consume all of the given input data. Read more

pub fn decode_with_depth_limit(limit: u32, input: &[u8]) -> Result<T, Error>[src]

Decode Self with the given maximum recursion depth. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> KeyedVec for T where
    T: Codec
[src]

pub fn to_keyed_vec(&self, prepend_key: &[u8]) -> Vec<u8, Global>[src]

Return an encoding of Self prepended by given slice.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<S> Codec for S where
    S: Decode + Encode
[src]

impl<'_, '_, T> EncodeLike<&'_ &'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ T> for T where
    T: Encode
[src]

impl<'_, T> EncodeLike<&'_ mut T> for T where
    T: Encode
[src]

impl<T> EncodeLike<Arc<T>> for T where
    T: Encode
[src]

impl<T> EncodeLike<Box<T, Global>> for T where
    T: Encode
[src]

impl<'a, T> EncodeLike<Cow<'a, T>> for T where
    T: ToOwned + Encode
[src]

impl<T> EncodeLike<Rc<T>> for T where
    T: Encode
[src]

impl<S> FullCodec for S where
    S: Decode + FullEncode
[src]

impl<S> FullEncode for S where
    S: Encode + EncodeLike<S>, 
[src]