derive_less

Crates.ioderive_less
lib.rsderive_less
version0.2.0
sourcesrc
created_at2019-04-15 15:09:37.447997
updated_at2019-07-07 14:35:12.337168
descriptionA macro for templating item declarations.
homepagehttps://github.com/segeljakt/derive_less
repositoryhttps://github.com/segeljakt/derive_less
max_upload_size
id128119
size12,317
Klas Segeljakt (segeljakt)

documentation

README

derive_less

A macro for templating item declarations.

Example

Suppose you needed the following code:

#[derive(Debug)]
pub struct Foo(
    #[apple]
    pub i32,
    #[apple]
    pub i32,
);
#[derive(Clone)]
pub enum Bar {
    #[orange]
    X(i32),
    #[orange]
    Y(i32),
}
#[derive(Debug)]
pub struct Baz(
    #[apple]
    pub i32,
    #[apple]
    pub f32,
    #[apple]
    pub i32,
);
#[derive(Clone)]
pub enum Qux {
    #[orange]
    A(i32),
    #[orange]
    B(i32),
    #[orange]
    C(i32),
}

Instead of typing out #[orange], #[apple], and pub, repeatedly for each item declaration, you could simply write:

use derive_less::derive_less;

derive_less! {
    #[derive(Debug)] pub struct __ { #[apple] pub __:__ }
    #[derive(Clone)] pub enum   __ { #[orange]    __    }

    struct Foo(i32, i32);
    enum Bar {
        X(i32),
        Y(i32),
    }
    struct Baz(i32, f32, i32);
    enum Qux {
        A(i32),
        B(i32),
        C(i32),
    }
}

You can also mix in derives that only apply to certain items/variants/fields, e.g:

use derive_less::derive_less;

derive_less! {
    #[derive(Debug)] pub struct __ { #[apple] pub __:__  }
    #[derive(Clone)] pub enum   __ { #[orange]    __     }

    struct Foo(i32, i32);
    enum Bar {
        X(#[peanut] i32),
        Y(i32),
    }
    #[derive(PartialEq, PartialOrd)]
    struct Baz(i32, f32, i32);
    enum Qux {
        A(i32),
        B(i32),
        C(i32),
    }
}
Commit count: 23

cargo fmt