[][src]Struct grin_core::libtx::build::Context

pub struct Context<'a, K, B> where
    K: Keychain,
    B: ProofBuild
{ pub keychain: &'a K, pub builder: &'a B, }

Context information available to transaction combinators.

Fields

keychain: &'a K

The keychain used for key derivation

builder: &'a B

The bulletproof builder

Auto Trait Implementations

impl<'a, K, B> Send for Context<'a, K, B> where
    B: Sync

impl<'a, K, B> Unpin for Context<'a, K, B>

impl<'a, K, B> Sync for Context<'a, K, B> where
    B: Sync

impl<'a, K, B> UnwindSafe for Context<'a, K, B> where
    B: RefUnwindSafe,
    K: RefUnwindSafe

impl<'a, K, B> RefUnwindSafe for Context<'a, K, B> where
    B: RefUnwindSafe,
    K: 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> 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> UnsafeAny for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T