#macro-derive #attributes #macro #derive #custom

no-std macro-attr-2018

This crate provides the macro_attr! macro that enables the use of custom, macro-based attributes and derivations

16 releases (stable)

3.0.1 Sep 8, 2024
3.0.0 Jul 24, 2023
2.1.2 May 26, 2022
1.1.2 May 6, 2022
0.3.3 Sep 6, 2020

#311 in Rust patterns

Download history 496/week @ 2024-08-16 539/week @ 2024-08-23 590/week @ 2024-08-30 1725/week @ 2024-09-06 1433/week @ 2024-09-13 846/week @ 2024-09-20 767/week @ 2024-09-27 689/week @ 2024-10-04 779/week @ 2024-10-11 1276/week @ 2024-10-18 911/week @ 2024-10-25 773/week @ 2024-11-01 585/week @ 2024-11-08 539/week @ 2024-11-15 529/week @ 2024-11-22 599/week @ 2024-11-29

2,366 downloads per month
Used in 17 crates (11 directly)

MIT/Apache

13KB
197 lines

maintenance: passively maintained

macro-attr-2018

The macro-attr modern fork.

This crate provides the macro_attr! macro that enables the use of custom, macro-based derivations.

The macro_attr! macro should be used to wrap an entire single item (enum, struct, etc.) declaration, including its attributes (both derive and others). All derivations which whose names end with ! will be assumed to be implemented by macros, and treated accordingly.

use macro_attr_2018::macro_attr;

// Define some traits to be derived.

trait TypeName {
    fn type_name() -> &'static str;
}

trait ReprType {
    type Repr;
}

// Define macros which derive implementations of these macros.

macro_rules! TypeName {
    // We can support any kind of item we want.
    (() $vis:vis enum $name:ident $($tail:tt)+) => { TypeName! { @impl $name } };
    (() $vis:vis struct $name:ident $($tail:tt)+) => { TypeName! { @impl $name } };

    // Inner rule to cut down on repetition.
    (@impl $name:ident) => {
        impl TypeName for $name {
            fn type_name() -> &'static str { stringify!($name) }
        }
    };
}

macro_rules! ReprType {
    // Note that we use a "derivation argument" here for the `$repr` type.
    (($repr:ty) $vis:vis enum $name:ident $($tail:tt)+) => {
        impl ReprType for $name {
            type Repr = $repr;
        }
    };
}

// Derive.

macro_attr! {
    #[derive(TypeName!, ReprType!(u16))]
    #[repr(u16)]
    enum SomeEnum { A, B, C, D }
}

No runtime deps