pub type ProtocolResult<T> = Result<T, ProtocolError>;Expand description
The result type for protocol operations.
Aliased Type§
pub enum ProtocolResult<T> {
Ok(T),
Err(ProtocolError),
}pub type ProtocolResult<T> = Result<T, ProtocolError>;The result type for protocol operations.
pub enum ProtocolResult<T> {
Ok(T),
Err(ProtocolError),
}