pub trait ControlParser {
    // Required method
    fn parse(val: &[u8]) -> Self;
}
Expand description

Conversion trait for response controls.

Required Methods§

source

fn parse(val: &[u8]) -> Self

Convert the raw BER value into a control-specific struct.

Implementors§