#attributes #stringify #string #proc-macro

macro stringify-attr

Attribute macros for stringifying

1 stable release

1.0.0 Mar 21, 2020

#1374 in Procedural macros

Zlib license

7KB
63 lines

stringify-attr

Crate Version Documentation Zlib

Attribute macros for stringifying. Probably only useful in unit tests and debugging, but who knows.

Usage

Basically these macros allow you to stringify using attribute macros instead of the normal stringify!. Since attribute macros must produce an item. Each macro produces a result! macro which expands to the desired string.

You can stringify just attributes:

use stringify_attr::stringify_attr;

assert_eq!(
    {
        #[stringify_attr(foo)] struct Foo;
        result!()
    },
    "foo"
);

Just items:

use stringify_attr::stringify_item;

assert_eq!(
    {
        #[stringify_item(foo)] struct Foo;
        result!()
    },
    "struct Foo;"
);

Or the whole thing:

use stringify_attr::stringify_all;

assert_eq!(
    {
        #[stringify_all(foo)] struct Foo;
        result!()
    },
    "#[stringify_all(foo)] struct Foo;"
);

Since attribute macros cannot differential being invoked with different delimeters, different attributes are provided:

use stringify_attr::stringify_braces as stringify_all;

assert_eq!(
    {
        #[stringify_all{foo}] struct Foo;
        result!()
    },
    "#[stringify_all{foo}] struct Foo;"
);

Note that these attributes still produce the text "stringify_all" in the output.

Dependencies

~89KB