facet 0.44.5

Reflection for Rust: introspect types at compile time with metadata for serialization, pretty-printing, CLIs, and more
Documentation
1
2
3
4
5
6
7
8
9
use facet::Facet;

#[test]
fn empty() {
    let shape = String::SHAPE;
    // on rust 1.86, this line is load-bearing.
    // cf. https://github.com/facet-rs/facet/issues/75
    println!("{shape}");
}