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