pub trait DataDecoder: Debug + Sync + Send {
    fn decode(&self, key: &str, data: &mut Bson) -> Result<()>;
}
Expand description

DataDecoder Process some bson data not yet supported by the framework, which returns TypeInfo and bytes

Required Methods

Implementors