derive_builder_core 0.3.0

Internal helper library for the derive_builder crate.
Documentation
/// Overrides for https://docs.rs/log/#macros
///
/// Source shared by `derive_builder_core` and `derive_builder` via symlink.
#[allow(unknown_lints, unused_macros)]
macro_rules! log_enabled {
    ($($x:tt)*) => {
        false
    };
}

// delegate to format_args and throw away the result to avoid `unused variable`
// lints.
// The compiler should be able to optimize this away.
#[allow(unknown_lints, unused_macros)]
macro_rules! debug {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}

#[allow(unknown_lints, unused_macros)]
macro_rules! error {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}

#[allow(unknown_lints, unused_macros)]
macro_rules! info {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}

#[allow(unknown_lints, unused_macros)]
macro_rules! log {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}

#[allow(unknown_lints, unused_macros)]
macro_rules! trace {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}

#[allow(unknown_lints, unused_macros)]
macro_rules! warn {
    ($( $x:tt )*) => { format_args!($( $x )*); }
}