sqlx-core-oldapi 0.6.53

Core of SQLx, the rust SQL toolkit. Not intended to be used directly.
Documentation
mod socket;
mod tls;

#[allow(unused_imports)]
pub use socket::Socket;
#[allow(unused_imports)]
pub use tls::CertificateInput;
#[allow(unused_imports)]
pub use tls::MaybeTlsStream;
#[allow(unused_imports)]
pub use tls::TlsConfig;

#[cfg(feature = "_rt-async-std")]
type PollReadBuf<'a> = [u8];

#[cfg(feature = "_rt-tokio")]
type PollReadBuf<'a> = sqlx_rt::ReadBuf<'a>;

#[cfg(feature = "_rt-async-std")]
type PollReadOut = usize;

#[cfg(feature = "_rt-tokio")]
type PollReadOut = ();