Trait tidb_query_datatype::codec::datum::DatumDecoder[][src]

pub trait DatumDecoder: DecimalDecoder + JsonDecoder + CompactByteDecoder + MemComparableByteDecoder {
    fn read_datum(&mut self) -> Result<Datum> { ... }
}

DatumDecoder decodes the datum.

Provided methods

fn read_datum(&mut self) -> Result<Datum>[src]

read_datum decodes on a datum from a byte slice generated by TiDB.

Loading content...

Implementors

impl<T: BufferReader> DatumDecoder for T[src]

Loading content...