pub trait ParseMessage: Sized {
// Required methods
fn parse(topic: &str, data: &str) -> Result<Self, BybitError>;
fn parse_succ(succ: &str) -> Result<Self, BybitError>;
fn ping() -> Self;
}
Required Methods§
fn parse(topic: &str, data: &str) -> Result<Self, BybitError>
fn parse_succ(succ: &str) -> Result<Self, BybitError>
fn ping() -> Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.