Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod r#trait;

#[allow(unused_imports)]
pub use r#trait::*;

#[cfg(feature = "thin-vec")]
mod thin_vec;

#[cfg(not(feature = "thin-vec"))]
mod std;

#[cfg(feature = "thin-vec")]
#[allow(unused_imports)]
pub use thin_vec::*;

#[cfg(not(feature = "thin-vec"))]
#[allow(unused_imports)]
pub use std::*;