This crate contains a library that deserializes a string into a struct based on a regular expression and serde.
```rust use serde::Deserialize;
struct Dimensions { width: u32, height: u32 }
let pattern = r"^(?P
let dim: Dimensions = deregex::fromstr(input, pattern).unwrap();
asserteq!(dim.width, 800); asserteq!(dim.height, 600); ```
This project is licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in serde_urlencoded by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.