blob: de4554905e5a350879862ec70fd31de3542a1377 [file] [log] [blame]
#![allow(clippy::disallowed_names)]
use crate::{body::HttpBody, BoxError};
mod test_client;
pub(crate) use self::test_client::*;
pub(crate) mod tracing_helpers;
pub(crate) fn assert_send<T: Send>() {}
pub(crate) fn assert_sync<T: Sync>() {}
pub(crate) fn assert_unpin<T: Unpin>() {}
pub(crate) struct NotSendSync(*const ());