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