pub enum ObjectError {
Decode {
key: &'static str,
src: DecodeError,
},
WrongDataType(&'static str),
NotAnObject,
UnrecognizedKey(String),
MissingKey(&'static str),
FogPack(Error),
IncorrectIdentityKey(Box<Identity>),
}Expand description
An error that occurred while converting from JSON to a fog-pack object, like a Document or Entry.
Variants§
Decode
Data conversion failed for a particular key-value pair in the object
WrongDataType(&'static str)
Expected a different data type
NotAnObject
The root JSON value wasn’t an Object as expected
UnrecognizedKey(String)
The object contained an unexpected key-value pair
MissingKey(&'static str)
Missing one of the required key-value pairs for this fog-pack object
FogPack(Error)
Couldn’t form the final result for some fog-pack specific reason
IncorrectIdentityKey(Box<Identity>)
The provided key was incorrect
Trait Implementations§
Source§impl Clone for ObjectError
impl Clone for ObjectError
Source§fn clone(&self) -> ObjectError
fn clone(&self) -> ObjectError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObjectError
impl Debug for ObjectError
Source§impl Display for ObjectError
impl Display for ObjectError
Source§impl Error for ObjectError
impl Error for ObjectError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ObjectError
impl RefUnwindSafe for ObjectError
impl Send for ObjectError
impl Sync for ObjectError
impl Unpin for ObjectError
impl UnwindSafe for ObjectError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more