drylib-procs 0.1.13

Rust macro-library for Don't Repeating Yourself
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(feature = "clones-prefix-c")]
pub(crate) const CLONES_PREFIX: char = 'c';
#[cfg(not(feature = "clones-prefix-c"))]
#[cfg(feature = "clones-prefix-cl")]
pub(crate) const CLONES_PREFIX: &str = "cl";
#[cfg(not(any(feature = "clones-prefix-c", feature = "clones-prefix-cl")))]
#[cfg(feature = "clones-prefix-clo")]
pub(crate) const CLONES_PREFIX: &str = "clo";
#[cfg(not(any(feature = "clones-prefix-c", feature = "clones-prefix-cl", feature = "clones-prefix-clo")))]
#[cfg(feature = "clones-prefix-clon")]
pub(crate) const CLONES_PREFIX: &str = "clon";
#[cfg(not(any(feature = "clones-prefix-c", feature = "clones-prefix-cl", feature = "clones-prefix-clo", feature = "clones-prefix-clon")))]
#[cfg(feature = "clones-prefix-clone")]
pub(crate) const CLONES_PREFIX: &str = "clone";
#[cfg(not(any(feature = "clones-prefix-c", feature = "clones-prefix-cl", feature = "clones-prefix-clo", feature = "clones-prefix-clon", feature = "clones-prefix-clone")))]
pub(crate) const CLONES_PREFIX: &str = "c";