#[repr(C)]pub enum WildlandHttpClientError {
HttpError(String),
CannotSerializeRequestError(Rc<Error>),
CommonLibError(CryptoError),
HttpLibError(HttpError),
}Variants§
HttpError(String)
CannotSerializeRequestError(Rc<Error>)
CommonLibError(CryptoError)
HttpLibError(HttpError)
Trait Implementations§
Source§impl Clone for WildlandHttpClientError
impl Clone for WildlandHttpClientError
Source§fn clone(&self) -> WildlandHttpClientError
fn clone(&self) -> WildlandHttpClientError
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 WildlandHttpClientError
impl Debug for WildlandHttpClientError
Source§impl Display for WildlandHttpClientError
impl Display for WildlandHttpClientError
Source§impl Error for WildlandHttpClientError
impl Error for WildlandHttpClientError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<CryptoError> for WildlandHttpClientError
impl From<CryptoError> for WildlandHttpClientError
Source§fn from(source: CryptoError) -> Self
fn from(source: CryptoError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WildlandHttpClientError
impl !RefUnwindSafe for WildlandHttpClientError
impl !Send for WildlandHttpClientError
impl !Sync for WildlandHttpClientError
impl Unpin for WildlandHttpClientError
impl !UnwindSafe for WildlandHttpClientError
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