wtx 0.28.0

A collection of different transport implementations and related tools focused primarily on web technologies.
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],
}