axum 0.5.17

Web framework that focuses on ergonomics and modularity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(clippy::blacklisted_name)]

use crate::{body::HttpBody, BoxError};

mod test_client;
pub(crate) use self::test_client::*;

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 ());