/// A collection of values that can be decoded from a single row.
////// This trait can be derived by `zino_derive::DecodeRow`.
pubtraitDecodeRow<Row>: Default + Sized {/// The error type.
typeError;/// Decodes a row and attempts to create an instance of `Self`.
fndecode_row(row:&Row)->Result<Self, Self::Error>;}