pub type WsResult<T> = Result<T, WsError>;
Result type for WebSocket handlers
pub enum WsResult<T> { Ok(T), Err(WsError), }
Contains the success value
Contains the error value