pub type SocketResult<T> = Result<T, SocketErr>;
socket result
pub enum SocketResult<T> { Ok(T), Err(SocketErr), }
Contains the success value
Contains the error value