[][src]Struct web3::transports::batch::Batch

pub struct Batch<T> { /* fields omitted */ }

Transport allowing to batch queries together.

Implementations

impl<T> Batch<T> where
    T: BatchTransport
[src]

pub fn new(transport: T) -> Self[src]

Creates new Batch transport given existing transport supporing batch requests.

pub fn submit_batch(&self) -> impl Future<Output = Result<Vec<Result<Value>>>>[src]

Sends all requests as a batch.

Trait Implementations

impl<T: Clone> Clone for Batch<T>[src]

impl<T: Debug> Debug for Batch<T>[src]

impl<T> Transport for Batch<T> where
    T: BatchTransport
[src]

type Out = SingleResult

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for Batch<T>

impl<T> Send for Batch<T> where
    T: Send

impl<T> Sync for Batch<T> where
    T: Sync

impl<T> Unpin for Batch<T> where
    T: Unpin

impl<T> !UnwindSafe for Batch<T>

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,