use crate::{PgColumn, PgTypeInfo}; use std::borrow::Cow; use std::sync::Arc; pub struct PgStatement<'q> { sql: Cow<'q, str>, metadata: Arc, } pub(crate) struct StatementMetadata { pub(crate) parameters: Vec, pub(crate) columns: Vec, }