1 2 3 4 5 6 7 8
use crate::{database::client::postgres::Ty, misc::ConnectionState}; pub(crate) struct FetchWithStmtCommons<'others, S> { pub(crate) cs: &'others mut ConnectionState, pub(crate) stream: &'others mut S, /// Pre-specified types pub(crate) tys: &'others [Ty], }