pub type NetResult<T> = Result<T, NetworkError>;Expand description
A convenient result alias for network operations.
Aliased Type§
pub enum NetResult<T> {
Ok(T),
Err(NetworkError),
}pub type NetResult<T> = Result<T, NetworkError>;A convenient result alias for network operations.
pub enum NetResult<T> {
Ok(T),
Err(NetworkError),
}