pub type NetResult<T> = Result<T, NetError>;
Network layer result type
pub enum NetResult<T> { Ok(T), Err(NetError), }
Contains the success value
Contains the error value