pub trait MessageMethodName: Message {
    // Required method
    fn method_raw(&self) -> &[u8] ;

    // Provided method
    fn method(&self) -> Option<&str> { ... }
}

Required Methods§

source

fn method_raw(&self) -> &[u8]

Provided Methods§

source

fn method(&self) -> Option<&str>

Implementors§