chaud-hot 0.1.1

Implementation detail of Chaud.
Documentation
1
2
3
4
5
6
7
8
9
10
/// An alias for `|| format!(...)`.
///
/// Primarily meant for use with [`anyhow::Context::with_context`] (thus
/// "**E**rror con**T**e**X**t"), but also used by some logging helpers.
macro_rules! etx {
    ($($t:tt)*) => {
        || format!($($t)*)
    }
}
pub(crate) use etx;