pub trait RowDecoder<'a> {
type Output;
// Required method
fn decode_row(&mut self, row: BinaryRowPayload<'a>) -> Result<Self::Output>;
}Expand description
Trait for decoding a single row from raw bytes
Implementations can maintain state and decode rows into their own structures