pub trait DecodeStatic: Sized {
    // Required method
    fn decode(input: &[u8]) -> Result<(&[u8], Self), DecodeError>;
}

Required Methods§

source

fn decode(input: &[u8]) -> Result<(&[u8], Self), DecodeError>

Implementors§

source§

impl<'a> DecodeStatic for Continue<'static>

source§

impl<'a> DecodeStatic for Response<'static>

source§

impl<'a> DecodeStatic for AuthenticateData

source§

impl<'a> DecodeStatic for Command<'static>

source§

impl<'a> DecodeStatic for IdleDone

source§

impl<'a> DecodeStatic for Greeting<'static>