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