#reflection #generate #type

invade

A library to reflect on Rust types and generate code

6 releases

0.0.6 Feb 14, 2024
0.0.5 Feb 14, 2024

#602 in Data structures

30 downloads per month

MIT/Apache

8KB
69 lines

invade

Setup

cargo add invade

Usage

use invade::invade;

#[invade]
struct Counter {
    count: u32,
}

#[invade]
impl Counter {
    fn inc(&mut self) {
        self.count += 1;
    }
}

fn main() {
    let mut counter = Counter { count: 0 };
  
    println!("count: {:?}", counter.invade_get::<u32>("count"));

    counter.invade_set("count", 1_u32);

    assert_eq!(counter.count, 1);

    counter.invade_call("inc", vec![]);

    assert_eq!(counter.count, 2);
}

Dependencies

~335–790KB
~19K SLoC