Enum xml_rpc::error::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
XmlFormat(FmtErrorKind),
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
XmlFormat(FmtErrorKind)
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
impl Debug for ErrorKind
impl Display for ErrorKind
impl From<FmtErrorKind> for ErrorKind
fn from(e: FmtErrorKind) -> Self
Performs the conversion.