Trait ParseMessage

Source
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§

Source

fn parse(topic: &str, data: &str) -> Result<Self, BybitError>

Source

fn parse_succ(succ: &str) -> Result<Self, BybitError>

Source

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.

Implementors§