pub enum RpcError {
Fault {
fault_code: String,
fault_string: String,
fault_detail: Box<Element>,
},
XmlError {
error: Error,
},
ExpectedElementText {
tag: String,
},
UnexpectedElement {
tag: String,
},
ElementWasEmpty {
name: String,
},
ElementNotFound {
path: Vec<String>,
},
}
Expand description
Method parsing / response error.
Variants§
Trait Implementations§
impl StructuralPartialEq for RpcError
Auto Trait Implementations§
impl Freeze for RpcError
impl RefUnwindSafe for RpcError
impl Send for RpcError
impl Sync for RpcError
impl Unpin for RpcError
impl UnwindSafe for RpcError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more