[][src]Struct storage_proofs::batchpost::Proof

pub struct Proof<H: Hasher> {
    pub proofs: Vec<Proof<H>>,
    pub challenges: Vec<usize>,
}

Fields

proofs: Vec<Proof<H>>challenges: Vec<usize>

Trait Implementations

impl<H: Clone + Hasher> Clone for Proof<H>[src]

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

Performs copy-assignment from source. Read more

impl<H: Debug + Hasher> Debug for Proof<H>[src]

impl<H: Hasher> Serialize for Proof<H> where
    Proof<H>: Serialize
[src]

impl<'de, H: Hasher> Deserialize<'de> for Proof<H> where
    Proof<H>: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<H> Send for Proof<H> where
    <H as Hasher>::Domain: Send

impl<H> Unpin for Proof<H> where
    H: Unpin,
    <H as Hasher>::Domain: Unpin

impl<H> Sync for Proof<H> where
    <H as Hasher>::Domain: Sync

impl<H> UnwindSafe for Proof<H> where
    H: UnwindSafe,
    <H as Hasher>::Domain: UnwindSafe

impl<H> RefUnwindSafe for Proof<H> where
    H: RefUnwindSafe,
    <H as Hasher>::Domain: RefUnwindSafe

Blanket Implementations

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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