pub type NetResult<T = ()> = Result<T, NetError>;
A result returned by the network and socket domain.
pub enum NetResult<T = ()> { Ok(T), Err(NetError), }
Contains the success value
Contains the error value