pub type TransportResult<T> = Result<T, TransportError>;Available on crate feature
transport only.Expand description
Result type for transport operations.
Aliased Type§
pub enum TransportResult<T> {
Ok(T),
Err(TransportError),
}