centraldogma 0.1.2

CentralDogma client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
#[macro_export]
macro_rules! here {
    ($e:expr) => {
        format!(
            "{}: {}",
            concat!("at ", file!(), ":", line!(), ":", column!()),
            $e
        )
    };
}