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