xitca_postgres/
row.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Rows. mostly copy/paste from `tokio-postgres`

mod traits;
mod types;

pub use types::{Row, RowOwned, RowSimple, RowSimpleOwned};

// Marker types for specialized impl on row types
pub(crate) mod marker {
    #[derive(Debug)]
    pub struct Typed;
    #[derive(Debug)]

    pub struct NoTyped;
}