salvo-utils 0.0.7

hyper utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(missing_docs)]

pub mod exec;
#[cfg(feature = "client")]
mod lazy;
pub(crate) mod never;
#[cfg(feature = "client")]
mod sync;

#[cfg(feature = "client")]
pub(crate) use exec::Exec;

#[cfg(feature = "client")]
pub(crate) use lazy::{lazy, Started as Lazy};
#[cfg(feature = "runtime")]
pub(crate) use never::Never;
#[cfg(feature = "client")]
pub(crate) use sync::SyncWrapper;