Type Alias jsonrpsee_core::client::BatchEntry

source ·
pub type BatchEntry<'a, R> = Result<R, ErrorObject<'a>>;
Available on crate feature client only.
Expand description

Represent a single entry in a batch response.

Aliased Type§

enum BatchEntry<'a, R> {
    Ok(R),
    Err(ErrorObject<'a>),
}

Variants§

§1.0.0

Ok(R)

Contains the success value

§1.0.0

Err(ErrorObject<'a>)

Contains the error value