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