pub fn read_string(edn: &str) -> Result<Edn<'_>, Error>
Reads one object from the &str.
See crate::error::Error.
crate::error::Error
19 20 21 22
fn main() { let e = edn::read_string("{:foo {猫 {{:foo :bar} [1 2 42 3]}}}").unwrap(); println!("{:?}", maybe_forty_two(&e)); }