Enum confluence::rpser::RpcError [] [src]

pub enum RpcError {
    Fault {
        fault_code: String,
        fault_string: String,
        fault_detail: Element,
    },
    XmlError {
        error: Error,
    },
    ExpectedElementText {
        tag: String,
    },
    UnexpectedElement {
        tag: String,
    },
    ElementWasEmpty {
        name: String,
    },
    ElementNotFound {
        path: Vec<String>,
    },
}
[]

Method parsing / response error.

Variants

Fault

Fields

fault_code
fault_string
fault_detail
XmlError

Fields

error
ExpectedElementText

Fields

tag
UnexpectedElement

Fields

tag
ElementWasEmpty

Fields

name
ElementNotFound

Fields

path

Trait Implementations

impl From<Error> for RpcError

fn from(other: Error) -> RpcError

Derived Implementations

impl PartialEq for RpcError

fn eq(&self, __arg_0: &RpcError) -> bool

fn ne(&self, __arg_0: &RpcError) -> bool

impl Debug for RpcError

fn fmt(&self, __arg_0: &mut Formatter) -> Result