[][src]Struct storage_proofs::compound_proof::SetupParams

pub struct SetupParams<'a, 'b: 'a, E: JubjubEngine, S: ProofScheme<'a>> where
    <S as ProofScheme<'a>>::SetupParams: 'b,
    E::Params: Sync
{ pub vanilla_params: &'b <S as ProofScheme<'a>>::SetupParams, pub engine_params: &'a E::Params, pub partitions: Option<usize>, }

Fields

vanilla_params: &'b <S as ProofScheme<'a>>::SetupParamsengine_params: &'a E::Paramspartitions: Option<usize>

Auto Trait Implementations

impl<'a, 'b, E, S> Unpin for SetupParams<'a, 'b, E, S>

impl<'a, 'b, E, S> Sync for SetupParams<'a, 'b, E, S> where
    <S as ProofScheme<'a>>::SetupParams: Sync

impl<'a, 'b, E, S> Send for SetupParams<'a, 'b, E, S> where
    <S as ProofScheme<'a>>::SetupParams: Sync

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

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

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<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>,