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
9
10
11
12
13
#[derive(Debug)]
pub(crate) struct StatementsMisc<A> {
  pub(crate) _aux: A,
  pub(crate) columns_len: usize,
  pub(crate) types_len: usize,
}

impl<A> StatementsMisc<A> {
  #[inline]
  pub(crate) fn new(aux: A, columns_len: usize, types_len: usize) -> Self {
    Self { _aux: aux, columns_len, types_len }
  }
}