[][src]Struct storage_proofs::compound_proof::PublicParams

pub struct PublicParams<'a, E: JubjubEngine, S: ProofScheme<'a>> {
    pub vanilla_params: S::PublicParams,
    pub engine_params: &'a E::Params,
    pub partitions: Option<usize>,
}

Fields

vanilla_params: S::PublicParamsengine_params: &'a E::Paramspartitions: Option<usize>

Trait Implementations

impl<'a, E: Clone + JubjubEngine, S: Clone + ProofScheme<'a>> Clone for PublicParams<'a, E, S> where
    S::PublicParams: Clone,
    E::Params: Clone
[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'a, E, S> Unpin for PublicParams<'a, E, S> where
    <S as ProofScheme<'a>>::PublicParams: Unpin

impl<'a, E, S> Send for PublicParams<'a, E, S> where
    <E as JubjubEngine>::Params: Sync,
    <S as ProofScheme<'a>>::PublicParams: Send

impl<'a, E, S> Sync for PublicParams<'a, E, S> where
    <E as JubjubEngine>::Params: Sync,
    <S as ProofScheme<'a>>::PublicParams: Sync

impl<'a, E, S> UnwindSafe for PublicParams<'a, E, S> where
    <E as JubjubEngine>::Params: RefUnwindSafe,
    <S as ProofScheme<'a>>::PublicParams: UnwindSafe

impl<'a, E, S> RefUnwindSafe for PublicParams<'a, E, S> where
    <E as JubjubEngine>::Params: RefUnwindSafe,
    <S as ProofScheme<'a>>::PublicParams: 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>,