#[repr(C)]pub enum WildlandHttpClientError {
ApplicationHttpError(Rc<Error>),
ClientHttpError(HttpError),
ClientConnectivityError(u16),
CommonLibError(CryptoError),
}
Variants§
ApplicationHttpError(Rc<Error>)
ClientHttpError(HttpError)
ClientConnectivityError(u16)
CommonLibError(CryptoError)
Trait Implementations§
source§impl Clone for WildlandHttpClientError
impl Clone for WildlandHttpClientError
source§fn clone(&self) -> WildlandHttpClientError
fn clone(&self) -> WildlandHttpClientError
Returns a copy 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)>
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.
source§impl From<Error> for WildlandHttpClientError
impl From<Error> for WildlandHttpClientError
source§impl From<Error> for WildlandHttpClientError
impl From<Error> for WildlandHttpClientError
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§
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