12 releases (4 breaking)
new 0.5.2 | Oct 18, 2024 |
---|---|
0.5.1 | Oct 15, 2024 |
0.4.1 | Oct 7, 2024 |
0.3.1 | Sep 27, 2024 |
0.1.3 | Sep 26, 2024 |
#1 in #initializer
1,406 downloads per month
6KB
62 lines
impl-opaque
Declare struct fields and initializers in implementation area.
This macro tries to solve separation of field declarations, initializations and usages.
The opaque
attribute generates struct declaration, struct constructor (new
method) by collecting field declarations and initializers inside impl block.
This crate is no_std on runtime and requires alloc to build macro.
Features
- Declare fields inside method
#[opaque]
impl Struct {
fn run(&mut self) {
#[field]
let ref mut count: i32 = 0;
*count += 1;
println!("{}", count);
}
}
- Declare fields inside impl block
#[opaque]
impl Struct {
field!(count: i32 = 0);
fn run(&mut self) {
self.count += 1;
println!("{}", self.count);
}
}
- Convert constructor arguments into fields
#[opaque(pub(self) count: i32)]
impl Struct {
fn run(&mut self) {
self.count += 1;
println!("{}", self.count);
}
}
- Declare struct and implement trait at once
#[opaque]
impl Iterator for Struct {
type Item = i32;
fn next(&mut self) -> Option<i32> {
#[field]
let ref mut count: i32 = 0;
*count += 1;
Some(*count)
}
}
- Pattern matching and early return for fields inside a method
#[opaque]
impl Struct {
pub fn run(&mut self) {
#[field]
let ref mut running @ true: bool = true else {
return
};
println!("run");
*running = false;
}
}
Attributes below #[opaque]
will be moved to struct declaration.
Attributes below #[field]
and field!()
will be moved to field declaration.
Attribute reference
#[opaque($(as $vis $(const)? ,)? $($($vis)? $ident: $ty),*)]
Examples
See examples
for simple example
License
This crate is licensed under MIT OR Apache-2.0
Dependencies
~245–690KB
~16K SLoC