wtx 0.50.0

A collection of different transport implementations and related tools focused primarily on web technologies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! A bunch of common structures that implement `Future`.
//!
//! This module is only intended for internal usage. Please use the `futures` crate if a feature
//! is not available here.

mod fn_fut;
mod join_array_vector;
mod poll_once;
mod sleep;
#[cfg(feature = "pin-project-lite")]
mod timeout;

pub use fn_fut::{FnFut, FnFutWrapper, FnMutFut};
pub use join_array_vector::{JoinArrayVector, TryJoinArrayVector};
pub use poll_once::PollOnce;
pub use sleep::Sleep;
#[cfg(feature = "pin-project-lite")]
pub use timeout::Timeout;