#![allow(clippy::disallowed_names)] use crate::{extract::Request, response::Response, serve}; mod test_client; pub use self::test_client::*; #[cfg(test)] pub(crate) mod tracing_helpers; #[cfg(test)] pub(crate) mod counting_cloneable_state; #[cfg(test)] pub(crate) fn assert_send() {} #[cfg(test)] pub(crate) fn assert_sync() {} #[allow(dead_code)] pub(crate) struct NotSendSync(*const ());