Deserr is a crate for deserializing data, with the ability to return custom, type-specific errors upon failure.
Unlike serde, Deserr does not parse the data in its serialization format itself, but offload the work to other crates. Instead, it deserializes the already-parsed serialized data into the final type. For example:
rust,ignore
// bytes of the serialized value
let s: &str = ".." ;
// parse serialized data using another crate, such as `serde_json`
let json: serde_json::Value = serde_json::from_str(s).unwrap();
// finally deserialize with deserr
let data = T::deserialize_from_value(json.into_value()).unwrap();
// `T` must implements `DeserializeFromValue`.
Thus, Deserr is slower than crates that immediately deserialize a value while parsing at the same time.
The main parts of Deserr are:
1. [DeserializeFromValue<E>
] is the main trait for deserialization
2. [IntoValue
] and [Value
] describe the shape that the parsed serialized data must have
3. [DeserializeError
] is the trait that all deserialization errors must conform to
4. [MergeWithError<E>
] describes how to combine multiple errors together. It allows Deserr
to return multiple deserialization errors at once.
5. [ValuePointerRef
] and [ValuePointer
] point to locations within the value. They are
used to locate the origin of an error.
6. [deserialize
] is the main function to use to deserialize a value
7. The DeserializeFromValue
derive proc macro
If the feature serde
is activated, then an implementation of [IntoValue
] is provided
for the type serde_json::Value
. This allows using Deserr to deserialize from JSON.
```rust use deserr::{DeserializeError, DeserializeFromValue, ErrorKind, DefaultError, Value, ValueKind, IntoValue, MergeWithError, ValuePointerRef, ValuePointer};
enum MyError { ForbiddenName, Other(DefaultError) }
impl DeserializeError for MyError {
/// Create a new error with the custom message.
///
/// Return Ok
to continue deserializing or Err
to fail early.
fn error
impl From
impl MergeWithError
struct Name(String);
impl DeserializeFromValue
```rust,ignore
struct User { name: Name, } ```
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 this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.