pub trait MessageIdExt {
    fn is_null(&self) -> bool;
    fn encode_hex(&self) -> String;
    fn decode_hex(hex: &str) -> Result<Self, Error>;
}

Required Methods

Implementors