pub fn decode_value(
type_oid: u32,
data: Option<&[u8]>,
format: Format,
) -> Result<Value, Error>Expand description
Decode a PostgreSQL value to a dynamic Value.
ยงArguments
type_oid- The PostgreSQL OID of the typedata- The raw data bytes (None for NULL)format- Wire format (text or binary)