pub type CanisterWsSendResult = Result<(), String>;
The result of ws_send.
enum CanisterWsSendResult { Ok(()), Err(String), }
Contains the success value
Contains the error value