#![feature(type_alias_impl_trait)]#![feature(impl_trait_in_assoc_type)]pubmodclient;pubmodtcp_client;/// The current pool status.
#[derive(Clone, Copy, Debug)]pubstructStatus{/// The maximum size of the pool.
pubmax_size:usize,
/// The current size of the pool.
pubsize:usize,
}