pub type ReadResult<T, R> = Result<T, <R as NodeReader>::Error>;Expand description
The Result a NodeReader read yields: a value T or the backend’s own
error. Aliased so the trait’s impl Future return types stay readable.
Aliased Type§
pub enum ReadResult<T, R> {
Ok(T),
Err(<R as NodeReader>::Error),
}