Remove is_error method from MessageCapable trait

This commit is contained in:
bitfl0wer 2023-11-18 20:02:39 +01:00
parent f1e3058346
commit 39e61a73e9
1 changed files with 0 additions and 1 deletions

View File

@ -91,7 +91,6 @@ pub trait MessageCapable: From<tokio_tungstenite::tungstenite::Message> {
fn as_string(&self) -> Option<String>;
fn as_bytes(&self) -> Option<Vec<u8>>;
fn is_empty(&self) -> bool;
fn is_error(&self) -> bool;
}
pub type ObservableObject = dyn Send + Sync + Any;