Type Alias jsonrpsee_core::client::BatchEntry
source · pub type BatchEntry<'a, R> = Result<R, ErrorObject<'a>>;
Expand description
Represent a single entry in a batch response.
Aliased Type§
enum BatchEntry<'a, R> {
Ok(R),
Err(ErrorObject<'a>),
}