Crate stringify_attr
Source - stringify_all
- An alias for
stringify_parens - stringify_attr
- Creates a macro
result which expands to the same string literal as
stringify!(attr) - stringify_braces
- Creates a macro
result which expands to the same string literal as
concat!("#[stringify_all{", stringify!(attr), "}]", stringify!(item)) - stringify_brackets
- Creates a macro
result which expands to the same string literal as
concat!("#[stringify_all[", stringify!(attr), "]]", stringify!(item)) - stringify_item
- Creates a macro
result which expands to the same string literal as
stringify!(item) - stringify_parens
- Creates a macro
result which expands to the same string literal as
concat!("#[stringify_all(", stringify!(attr), ")]", stringify!(item))