xitca_postgres/
row.rs

1//! Rows. mostly copy/paste from `tokio-postgres`
2
3mod traits;
4mod types;
5
6pub use types::{Row, RowOwned, RowSimple, RowSimpleOwned};
7
8// Marker types for specialized impl on row types
9pub(crate) mod marker {
10    #[derive(Debug)]
11    pub struct Typed;
12    #[derive(Debug)]
13
14    pub struct NoTyped;
15}