Trait Decoder

Source
pub trait Decoder: DecoderClone + Send {
    // Required methods
    fn new_worker(&self, _: &Context) -> Box<dyn Worker>;
    fn execution_type(&self) -> ExecType;
}
Expand description

Decoder trait.

Required Methods§

Source

fn new_worker(&self, _: &Context) -> Box<dyn Worker>

Source

fn execution_type(&self) -> ExecType

Implementors§