strobe-rs 0.5.0

An implementation of the Strobe protocol framework in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Use these dummy mods as a trick to re-export multiple traits at once
//

#[cfg(not(feature = "std"))]
mod reexports {
    pub use alloc::string::String;
    pub use alloc::vec::Vec;
}

#[cfg(feature = "std")]
mod reexports {
    pub use std::string::String;
    pub use std::vec::Vec;
}

pub use self::reexports::*;