1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright John Nunley, 2022.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//! Futures that are used throughout the program.
//!
//! In `breadx`, we manually create our own futures instead of using
//! `async` syntax, in order to allow traits to return either thread-safe or
//! thread-unsafe futures, based on the flavor of [`Display`] being used.
//! These futures are stored here.
//!
//! [`Display`]: crate::display::Display
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;