Enum serde_urlencoded::ser::Error
source · pub enum Error {
Custom(Cow<'static, str>),
Utf8(Utf8Error),
}
Expand description
Errors returned during serializing to application/x-www-form-urlencoded
.
Variants§
Trait Implementations§
source§impl Error for Error
impl Error for Error
source§fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
fn cause(&self) -> Option<&dyn Error>
The lower-level cause of this error, in the case of a Utf8
error.
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, in the case of a Utf8
error.
source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()