#macro #getter #setter

curmacro

包含如结构体获取器和设置器创建宏等有用宏的库

1 个稳定版本

1.0.0 2023年2月13日

#1593 in Rust 模式

Apache-2.0

6KB

Curmacro

包含如结构体获取器和设置器创建宏等有用宏的库

示例

use curmacro::*;

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

impl Point {
    getters!(
        pub get_x(x) -> i32;
        pub get_y(y) -> i32;    
    );
    setters!(
        pub set_x(i32) -> x;
        pub set_y(i32) -> y;    
    );
}

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

assert_eq!(point.get_x().clone(), x);
assert_eq!(point.get_y().clone(), y);
let x = 993;
let y = 37;

point.set_x(x);
point.set_y(y);

assert_eq!(point.get_x().clone(), x);
assert_eq!(point.get_y().clone(), y);

无运行时依赖