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