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