6 releases (breaking)
0.5.0 | May 16, 2023 |
---|---|
0.4.0 | May 15, 2023 |
0.3.1 | May 15, 2023 |
0.2.0 | May 15, 2023 |
0.1.0 | May 12, 2023 |
#1411 in Rust patterns
64 downloads per month
15KB
305 lines
Introspectable
Provides extremely simple introspection through the Introspectable trait, which enables runtime type introspection. A derive macro is available through the crate introspectable_derive.
This crate only supports owned types, excepting specifically 'static lifetimes.
Example
#[macro_use]
extern crate introspectable_derive;
use introspectable::Introspectable;
#[derive(Introspectable)]
struct TestIntrospect {
a: u32,
b: &'static u32,
c: [u128; 2]
}
fn main() {
println!("{:?}", TestIntrospect::introspect());
}
Dependencies
~110KB