Ent is an abstract object library. Using Rust's monomorphization, you can write zero cost interfaces across multiple object types including JSON and Python dictionaries. If you are interested in contributing to Ent, please do! We would welcome any help including additional object implementations.
Warning: Ent is in early development and depends on Rust nightly!
```toml [dependencies]
ent = { version = "0.1", features = ["derive"] } ```
```rust use ent::Ent;
fn getname
let v: serdejson::Value = serdejson::fromstr(r#"{"name":"test"}"#).unwrap(); let ref name = getname(&v).unwrap(); assert_eq!(name, &"test") ```
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Ent by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.