pub type Result<T> = Result<T, Error>;
A wrapper around std::result::Result where errors are all xdr_codec::Error.
std::result::Result
xdr_codec::Error
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value