pub type Result<T> = Result<T, ProtocolError>;
Expand description
Result used by the crate, based on the ProtocolError error type.
Aliased Type§
enum Result<T> {
Ok(T),
Err(ProtocolError),
}
pub type Result<T> = Result<T, ProtocolError>;
Result used by the crate, based on the ProtocolError error type.
enum Result<T> {
Ok(T),
Err(ProtocolError),
}