mockiato-codegen 0.9.6

Internally used by mockiato for code generation. This crate should never be used directly
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(rustc_is_nightly)]
mod nightly;
#[cfg(rustc_is_nightly)]
pub(crate) use self::nightly::*;

#[cfg(not(rustc_is_nightly))]
mod stable;
#[cfg(not(rustc_is_nightly))]
pub(crate) use self::stable::*;