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