Enum serde_redis::decode::Error
source · pub enum Error {
Custom(String),
EndOfStream,
UnknownVariant(String, &'static [&'static str]),
UnknownField(String, &'static [&'static str]),
MissingField(&'static str),
DuplicateField(&'static str),
DeserializeNotSupported,
WrongValue(String),
StrFromUtf8(Utf8Error),
StringFromUtf8(FromUtf8Error),
ParseInt(ParseIntError),
ParseFloat(ParseFloatError),
}Expand description
Error that can be produced during deserialization
Variants§
Custom(String)
EndOfStream
UnknownVariant(String, &'static [&'static str])
UnknownField(String, &'static [&'static str])
MissingField(&'static str)
DuplicateField(&'static str)
DeserializeNotSupported
WrongValue(String)
StrFromUtf8(Utf8Error)
StringFromUtf8(FromUtf8Error)
ParseInt(ParseIntError)
ParseFloat(ParseFloatError)
Implementations§
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn custom<T: Display>(msg: T) -> Self
fn custom<T: Display>(msg: T) -> Self
Raised when there is general error when deserializing a type.
source§fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
fn unknown_variant(variant: &str, expected: &'static [&'static str]) -> Self
Raised when a Deserialize enum type received an unexpected variant.
source§fn unknown_field(field: &str, expected: &'static [&'static str]) -> Error
fn unknown_field(field: &str, expected: &'static [&'static str]) -> Error
Raised when a
Deserialize struct type received a field with an
unrecognized name.source§fn missing_field(field: &'static str) -> Error
fn missing_field(field: &'static str) -> Error
Raised when a
Deserialize struct type expected to receive a required
field with a particular name but that field was not present in the
input.source§fn duplicate_field(field: &'static str) -> Error
fn duplicate_field(field: &'static str) -> Error
Raised when a
Deserialize struct type received more than one of the
same field.source§fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_type(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a
Deserialize receives a type different from what it was
expecting. Read moresource§fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
fn invalid_value(unexp: Unexpected<'_>, exp: &dyn Expected) -> Self
Raised when a
Deserialize receives a value of the right type but that
is wrong for some other reason. Read moresource§impl Error for Error
impl Error for Error
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()
source§impl From<FromUtf8Error> for Error
impl From<FromUtf8Error> for Error
source§fn from(err: FromUtf8Error) -> Error
fn from(err: FromUtf8Error) -> Error
Converts to this type from the input type.
source§impl From<ParseFloatError> for Error
impl From<ParseFloatError> for Error
source§fn from(err: ParseFloatError) -> Error
fn from(err: ParseFloatError) -> Error
Converts to this type from the input type.
source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
source§fn from(err: ParseIntError) -> Error
fn from(err: ParseIntError) -> Error
Converts to this type from the input type.