pub type NetResult<T> = Result<T, NetError>;
Result type for network operations.
pub enum NetResult<T> { Ok(T), Err(NetError), }
Contains the success value
Contains the error value