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