#[non_exhaustive]pub enum XMLRPCError {
Arguments,
Retval,
}
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.
Trait Implementations§
Source§impl Clone for XMLRPCError
impl Clone for XMLRPCError
Source§fn clone(&self) -> XMLRPCError
fn clone(&self) -> XMLRPCError
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 XMLRPCError
impl Debug for XMLRPCError
Source§impl Display for XMLRPCError
impl Display for XMLRPCError
Source§impl ErrorDomain for XMLRPCError
impl ErrorDomain for XMLRPCError
Source§impl<'a> FromValue<'a> for XMLRPCError
impl<'a> FromValue<'a> for XMLRPCError
Source§type Checker = GenericValueTypeChecker<XMLRPCError>
type Checker = GenericValueTypeChecker<XMLRPCError>
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 XMLRPCError
impl Hash for XMLRPCError
Source§impl Ord for XMLRPCError
impl Ord for XMLRPCError
Source§fn cmp(&self, other: &XMLRPCError) -> Ordering
fn cmp(&self, other: &XMLRPCError) -> 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 XMLRPCError
impl PartialEq for XMLRPCError
Source§impl PartialOrd for XMLRPCError
impl PartialOrd for XMLRPCError
Source§impl StaticType for XMLRPCError
impl StaticType for XMLRPCError
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.Source§impl ToValue for XMLRPCError
impl ToValue for XMLRPCError
Source§impl ValueType for XMLRPCError
impl ValueType for XMLRPCError
Source§type Type = XMLRPCError
type Type = XMLRPCError
Type to get the
Type
from. Read moreimpl Copy for XMLRPCError
impl Eq for XMLRPCError
impl StructuralPartialEq for XMLRPCError
Auto Trait Implementations§
impl Freeze for XMLRPCError
impl RefUnwindSafe for XMLRPCError
impl Send for XMLRPCError
impl Sync for XMLRPCError
impl Unpin for XMLRPCError
impl UnwindSafe for XMLRPCError
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
.