pub struct UntypedErrorObject {
pub identifier: Identifier,
pub name: String,
pub fields: Map<String, Value>,
pub raw: Value,
}
Fields§
§identifier: Identifier
§name: String
§fields: Map<String, Value>
§raw: Value
Trait Implementations§
Source§impl Clone for UntypedErrorObject
impl Clone for UntypedErrorObject
Source§fn clone(&self) -> UntypedErrorObject
fn clone(&self) -> UntypedErrorObject
Returns a copy 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 UntypedErrorObject
impl Debug for UntypedErrorObject
Source§impl<'de> Deserialize<'de> for UntypedErrorObject
impl<'de> Deserialize<'de> for UntypedErrorObject
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl IError<UntypedErrorObject> for SerializedError
impl IError<UntypedErrorObject> for SerializedError
fn get_identifier(&self) -> Identifier
fn get_message(&self) -> String
fn get_data(&self) -> UntypedErrorObject
Source§impl PartialEq for UntypedErrorObject
impl PartialEq for UntypedErrorObject
Source§impl Serialize for UntypedErrorObject
impl Serialize for UntypedErrorObject
impl Eq for UntypedErrorObject
impl StructuralPartialEq for UntypedErrorObject
Auto Trait Implementations§
impl Freeze for UntypedErrorObject
impl RefUnwindSafe for UntypedErrorObject
impl Send for UntypedErrorObject
impl Sync for UntypedErrorObject
impl Unpin for UntypedErrorObject
impl UnwindSafe for UntypedErrorObject
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