derive_less 0.2.0

A macro for templating item declarations.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![allow(dead_code)]
#![allow(unused_attributes)]

use derive_less::derive_less;

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

    struct Foo;
    #[derive(PartialEq, PartialOrd)]
    struct Bar;
    struct Baz;
}

fn main() {}