spiegel 0.2.0

A Rust library for reflection
Documentation
1
2
3
4
5
6
use spiegel::{Point, dbg};

fn main() {
    let point = Point { x: 1, y: "2", z: 3 };
    dbg(point);
}