pub type Result<T> = Result<T, Error>;Expand description
An alias of std::result::Result where the error is always crate::error::Error.
This is the result type used by all functions wrapping RPCs.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}