[][src]Struct exonum_merkledb::indexes::proof_list::CheckedListProof

pub struct CheckedListProof<'a, V> { /* fields omitted */ }

Version of ListProof obtained after verification.

See ListProof for an example of usage.

Methods

impl<'a, V> CheckedListProof<'a, V>[src]

pub fn entries(&self) -> &'a [(u64, V)][src]

Returns indexes and references to elements in the proof.

pub fn indexes(&self) -> impl Iterator<Item = u64> + '_[src]

Returns iterator over indexes of the elements in the proof without verifying proof integrity.

pub fn list_len(&self) -> u64[src]

Returns the length of the underlying ProofListIndex.

pub fn index_hash(&self) -> Hash[src]

Returns the object_hash() of the underlying ProofListIndex.

Trait Implementations

impl<'a, V: Clone> Clone for CheckedListProof<'a, V>[src]

impl<'a, V: Copy> Copy for CheckedListProof<'a, V>[src]

impl<'a, V: Debug> Debug for CheckedListProof<'a, V>[src]

impl<'a, V: PartialEq> PartialEq<CheckedListProof<'a, V>> for CheckedListProof<'a, V>[src]

impl<'a, V> StructuralPartialEq for CheckedListProof<'a, V>[src]

Auto Trait Implementations

impl<'a, V> RefUnwindSafe for CheckedListProof<'a, V> where
    V: RefUnwindSafe

impl<'a, V> Send for CheckedListProof<'a, V> where
    V: Sync

impl<'a, V> Sync for CheckedListProof<'a, V> where
    V: Sync

impl<'a, V> Unpin for CheckedListProof<'a, V>

impl<'a, V> UnwindSafe for CheckedListProof<'a, V> where
    V: RefUnwindSafe

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,