pub type Result<T> = Result<T, ProtocolError>;Expand description
Result type used by protocol codecs.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ProtocolError),
}pub type Result<T> = Result<T, ProtocolError>;Result type used by protocol codecs.
pub enum Result<T> {
Ok(T),
Err(ProtocolError),
}