[][src]Struct storage_proofs::porep::ProverAux

pub struct ProverAux<H: Hasher> {
    pub tree_d: MerkleTree<H::Domain, H::Function>,
    pub tree_r: MerkleTree<H::Domain, H::Function>,
}

Fields

tree_d: MerkleTree<H::Domain, H::Function>tree_r: MerkleTree<H::Domain, H::Function>

Methods

impl<H: Hasher> ProverAux<H>[src]

pub fn new(
    tree_d: MerkleTree<H::Domain, H::Function>,
    tree_r: MerkleTree<H::Domain, H::Function>
) -> Self
[src]

Trait Implementations

impl<H: Clone + Hasher> Clone for ProverAux<H> where
    H::Domain: Clone,
    H::Function: Clone,
    H::Domain: Clone,
    H::Function: Clone
[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 ProverAux<H> where
    H::Domain: Debug,
    H::Function: Debug,
    H::Domain: Debug,
    H::Function: Debug
[src]

Auto Trait Implementations

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

impl<H> Send for ProverAux<H> where
    <H as Hasher>::Domain: Send,
    <H as Hasher>::Function: Send

impl<H> Sync for ProverAux<H> where
    <H as Hasher>::Domain: Sync,
    <H as Hasher>::Function: Sync

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

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

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

impl<T> BorrowMut<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> Same<T> for T

type Output = T

Should always be Self

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