message

Macro message 

Source
macro_rules! message {
    ($message_with_format_args:literal $(,)?) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description

Construct a Message from a string literal or format string. Note that it always runs format!(), use the message() function for literals instead.