Skip to main content

t

Macro t 

Source
macro_rules! t {
    ($key:expr) => { ... };
    ($key:expr, $($name:ident = $val:expr),+ $(,)?) => { ... };
}
Expand description

Convenience macro: t!("key") or t!("key", name = value, ...). Values may be any Display type; they’re stringified.