Package rust-jemmy
This package provides a coherent set of manual accessor macros.
TBD
Example
use access;
Forms
- function/field names;
- into keyword;
- boxed keyword;
- optional keyword;
- default keyword;
This package provides a coherent set of manual accessor macros.
TBD
use jemmy::access;
pub struct Thing {
name: String,
age: u32,
}
impl Thing {
access::get!(pub name => String);
access::get!(pub age => u32);
access::set!(pub age => u32);
}