pub enum SerializationError {
Serialize(Rc<dyn Error>),
Deserialize(Rc<dyn Error>),
}
Expand description
Describes errors that can occur while serializing and deserializing data, typically during the process of streaming Resources from the server to the client.
Variants§
Serialize(Rc<dyn Error>)
Errors that occur during serialization.
Deserialize(Rc<dyn Error>)
Errors that occur during deserialization.
Trait Implementations§
source§impl Clone for SerializationError
impl Clone for SerializationError
source§fn clone(&self) -> SerializationError
fn clone(&self) -> SerializationError
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 SerializationError
impl Debug for SerializationError
source§impl Display for SerializationError
impl Display for SerializationError
source§impl Error for SerializationError
impl Error for SerializationError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 !RefUnwindSafe for SerializationError
impl !Send for SerializationError
impl !Sync for SerializationError
impl Unpin for SerializationError
impl !UnwindSafe for SerializationError
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