rocket/local/blocking/mod.rs
1//! Blocking local dispatching of requests.
2//!
3//! This module contains the `blocking` variant of the `local` API: it can be
4//! used in Rust's synchronous `#[test]` harness. This is accomplished by
5//! starting and running an internal asynchronous Runtime as needed. For the
6//! asynchronous variant, see [`asynchronous`](super::asynchronous).
7//!
8//! See the [top-level documentation](super) for more usage details.
9
10mod client;
11mod request;
12mod response;
13
14pub use self::client::*;
15pub use self::request::*;
16pub use self::response::*;