Struct at_commands::DeserializeError
source · pub struct DeserializeError {
pub cause: DeserializeErrorCause,
pub bytes: Vec<u8>,
}
Expand description
Error struct containing the cause of a deserialization error and the bytes that caused the error.
Fields§
§cause: DeserializeErrorCause
§bytes: Vec<u8>
Trait Implementations§
source§impl Clone for DeserializeError
impl Clone for DeserializeError
source§fn clone(&self) -> DeserializeError
fn clone(&self) -> DeserializeError
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 DeserializeError
impl Debug for DeserializeError
source§impl PartialEq<DeserializeError> for DeserializeError
impl PartialEq<DeserializeError> for DeserializeError
source§fn eq(&self, other: &DeserializeError) -> bool
fn eq(&self, other: &DeserializeError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.