#[non_exhaustive]pub enum XMLRPCFault {
ParseErrorNotWellFormed,
ParseErrorUnsupportedEncoding,
ParseErrorInvalidCharacterForEncoding,
ServerErrorInvalidXmlRpc,
ServerErrorRequestedMethodNotFound,
ServerErrorInvalidMethodParameters,
ServerErrorInternalXmlRpcError,
ApplicationError,
SystemError,
TransportError,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ParseErrorNotWellFormed
ParseErrorUnsupportedEncoding
ParseErrorInvalidCharacterForEncoding
ServerErrorInvalidXmlRpc
ServerErrorRequestedMethodNotFound
ServerErrorInvalidMethodParameters
ServerErrorInternalXmlRpcError
ApplicationError
SystemError
TransportError
Implementations§
Trait Implementations§
Source§impl Clone for XMLRPCFault
impl Clone for XMLRPCFault
Source§fn clone(&self) -> XMLRPCFault
fn clone(&self) -> XMLRPCFault
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for XMLRPCFault
impl Debug for XMLRPCFault
Source§impl Display for XMLRPCFault
impl Display for XMLRPCFault
Source§impl<'a> FromValue<'a> for XMLRPCFault
impl<'a> FromValue<'a> for XMLRPCFault
Source§type Checker = GenericValueTypeChecker<XMLRPCFault>
type Checker = GenericValueTypeChecker<XMLRPCFault>
Value type checker.
Source§unsafe fn from_value(value: &'a Value) -> Self
unsafe fn from_value(value: &'a Value) -> Self
Get the contained value from a
Value
. Read moreSource§impl Hash for XMLRPCFault
impl Hash for XMLRPCFault
Source§impl Ord for XMLRPCFault
impl Ord for XMLRPCFault
Source§fn cmp(&self, other: &XMLRPCFault) -> Ordering
fn cmp(&self, other: &XMLRPCFault) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for XMLRPCFault
impl PartialEq for XMLRPCFault
Source§impl PartialOrd for XMLRPCFault
impl PartialOrd for XMLRPCFault
Source§impl StaticType for XMLRPCFault
impl StaticType for XMLRPCFault
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.Source§impl ToValue for XMLRPCFault
impl ToValue for XMLRPCFault
Source§impl ValueType for XMLRPCFault
impl ValueType for XMLRPCFault
Source§type Type = XMLRPCFault
type Type = XMLRPCFault
Type to get the
Type
from. Read moreimpl Copy for XMLRPCFault
impl Eq for XMLRPCFault
impl StructuralPartialEq for XMLRPCFault
Auto Trait Implementations§
impl Freeze for XMLRPCFault
impl RefUnwindSafe for XMLRPCFault
impl Send for XMLRPCFault
impl Sync for XMLRPCFault
impl Unpin for XMLRPCFault
impl UnwindSafe for XMLRPCFault
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.