[][src]Struct ethcontract::transport::DynTransport

pub struct DynTransport { /* fields omitted */ }

Dynamic Transport implementation to allow for a generic-free contract API. This type wraps any Transport type and implements Transport itself.

Methods

impl DynTransport[src]

pub fn new<F, T>(inner: T) -> DynTransport where
    F: Future<Item = Value, Error = Web3Error> + Send + 'static,
    T: Transport<Out = F> + 'static, 
[src]

Wrap a Transport in a DynTransport

Trait Implementations

impl Clone for DynTransport[src]

impl Debug for DynTransport[src]

impl Transport for DynTransport[src]

type Out = Box<dyn Future<Item = Value, Error = Web3Error> + Send + 'static>

The type of future this transport returns when a call is made.

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<X, T> Transport for X where
    T: Transport + ?Sized,
    X: Deref<Target = T> + Debug + Clone
[src]

type Out = <T as Transport>::Out

The type of future this transport returns when a call is made.

impl<T> Typeable for T where
    T: Any

impl<T> Same<T> for T

type Output = T

Should always be Self

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