W3cubDocs

/Rust

Macro std::stringify

macro_rules! stringify {
    ($($t:tt)*) => { ... };
}

Stringifies its arguments.

This macro will yield an expression of type &'static str which is the stringification of all the tokens passed to the macro. No restrictions are placed on the syntax of the macro invocation itself.

Note that the expanded results of the input tokens may change in the future. You should be careful if you rely on the output.

Examples

let one_plus_one = stringify!(1 + 1);
assert_eq!(one_plus_one, "1 + 1");

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/macro.stringify.html