[][src]Struct grin_wallet_impls::DefaultWalletImpl

pub struct DefaultWalletImpl<'a, C> where
    C: NodeClient + 'a, 
{ /* fields omitted */ }

Main wallet instance

Methods

impl<'a, C> DefaultWalletImpl<'a, C> where
    C: NodeClient + 'a, 
[src]

pub fn new(node_client: C) -> Result<Self, Error>[src]

Trait Implementations

impl<'a, L, C, K> WalletInst<'a, L, C, K> for DefaultWalletImpl<'a, C> where
    DefaultLCProvider<'a, C, ExtKeychain>: WalletLCProvider<'a, C, K>,
    L: WalletLCProvider<'a, C, K>,
    C: NodeClient + 'a,
    K: Keychain + 'a, 
[src]

Auto Trait Implementations

impl<'a, C> !RefUnwindSafe for DefaultWalletImpl<'a, C>

impl<'a, C> Send for DefaultWalletImpl<'a, C>

impl<'a, C> Sync for DefaultWalletImpl<'a, C>

impl<'a, C> Unpin for DefaultWalletImpl<'a, C> where
    C: Unpin

impl<'a, C> !UnwindSafe for DefaultWalletImpl<'a, C>

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> Erased for T

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

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

impl<T> SafeBorrow<T> for T where
    T: ?Sized

impl<T> Same<T> for T

type Output = T

Should always be Self

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> UnsafeAny for T where
    T: Any

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