[][src]Struct fawkes_crypto_bellman_ce::Namespace

pub struct Namespace<'a, E: Engine, CS: ConstraintSystem<E> + 'a>(_, _);

This is a "namespaced" constraint system which borrows a constraint system (pushing a namespace context) and, when dropped, pops out of the namespace context.

Trait Implementations

impl<'cs, E: Engine, CS: ConstraintSystem<E>> ConstraintSystem<E> for Namespace<'cs, E, CS>[src]

type Root = CS::Root

Represents the type of the "root" of this constraint system so that nested namespaces can minimize indirection. Read more

impl<'a, E: Engine, CS: ConstraintSystem<E>> Drop for Namespace<'a, E, CS>[src]

Auto Trait Implementations

impl<'a, E, CS> RefUnwindSafe for Namespace<'a, E, CS> where
    CS: RefUnwindSafe,
    E: RefUnwindSafe

impl<'a, E, CS> Send for Namespace<'a, E, CS> where
    CS: Send,
    E: Send

impl<'a, E, CS> Sync for Namespace<'a, E, CS> where
    CS: Sync,
    E: Sync

impl<'a, E, CS> Unpin for Namespace<'a, E, CS> where
    E: Unpin

impl<'a, E, CS> !UnwindSafe for Namespace<'a, E, CS>

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, 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.