Curmacro

Crate with usefull macros like struct getters and setters creation macros

Links

Example

```rust use curmacro::*;

struct Point { pub x: i32, pub y: i32 }

impl Point { getters!( pub getx(x) -> i32; pub gety(y) -> i32;
); setters!( pub setx(i32) -> x; pub sety(i32) -> y;
); }

let x = 13; let y = 215; let mut point = Point { x, y };

asserteq!(point.getx().clone(), x); asserteq!(point.gety().clone(), y); let x = 993; let y = 37;

point.setx(x); point.sety(y);

asserteq!(point.getx().clone(), x); asserteq!(point.gety().clone(), y); ```