kx-utils 0.1.3

Common utils incubator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//

/// Macros for use with the [kameo](https://crates.io/crates/kameo) async actor framework.
#[cfg(feature = "use-kameo")]
pub mod kameo;

/// Macros for use with the [kxio](https://crates.io/crates/kxio) injectable IO crate.
#[cfg(feature = "use-kxio")]
pub mod kxio;

/// Macro and function for converting a value to a [String]
mod to_string;

#[allow(unused_imports)]
pub use to_string::s;