Type Alias rf_distributed::network::NetworkResult
source · pub type NetworkResult<T> = Result<T, Box<dyn Error>>;Expand description
This type represent the result of a network operation
Aliased Type§
enum NetworkResult<T> {
Ok(T),
Err(Box<dyn Error>),
}