pub fn parse_value<'buf, T: FromRawValue<'buf>>(
col: &ColumnDefinitionTail,
is_null: bool,
data: &'buf [u8],
) -> Result<(T, &'buf [u8])>Expand description
Parse a single value from binary data into target type T.
Returns the parsed value and remaining bytes.