macro stringify($expr) { ... }
Stringifies an expression.
Example
use std::stringify;
assert_eq!(stringify!(1 + 2), "1 + 2");
Run this example
Stringifies an expression.
use std::stringify;
assert_eq!(stringify!(1 + 2), "1 + 2");
Run this example