pub enum WildlandHttpClientError {
    HttpError(String),
    CannotSerializeRequestError {
        source: Rc<Error>,
    },
    CommonLibError(CryptoError),
    HttpLibError(Rc<Error>),
}Variants
HttpError(String)
CannotSerializeRequestError
CommonLibError(CryptoError)
HttpLibError(Rc<Error>)
Trait Implementations
sourceimpl Clone for WildlandHttpClientError
 
impl Clone for WildlandHttpClientError
sourcefn clone(&self) -> WildlandHttpClientError
 
fn clone(&self) -> WildlandHttpClientError
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
 
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for WildlandHttpClientError
 
impl Debug for WildlandHttpClientError
sourceimpl Display for WildlandHttpClientError
 
impl Display for WildlandHttpClientError
sourceimpl Error for WildlandHttpClientError
 
impl Error for WildlandHttpClientError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
 
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
 
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<CryptoError> for WildlandHttpClientError
 
impl From<CryptoError> for WildlandHttpClientError
sourcefn from(source: CryptoError) -> Self
 
fn from(source: CryptoError) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for WildlandHttpClientError
impl !Send for WildlandHttpClientError
impl !Sync for WildlandHttpClientError
impl Unpin for WildlandHttpClientError
impl !UnwindSafe for WildlandHttpClientError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more