flatten_json_object/
error.rs

1use thiserror::Error;
2
3/// Errors that can happen while using this crate.
4#[derive(Error, Debug)]
5pub enum Error {
6    #[error("Only objects can be flattened")]
7    FirstLevelMustBeAnObject,
8
9    #[error("Flattening the object will overwrite the key '{0}'")]
10    KeyWillBeOverwritten(String),
11}