pub enum AuthedError {
NetworkFailure(NetworkFailure),
InvalidParams(InvalidParams),
InvalidResponse(InvalidResponse),
InvalidAuth(InvalidAuth),
}Variants§
NetworkFailure(NetworkFailure)
InvalidParams(InvalidParams)
InvalidResponse(InvalidResponse)
InvalidAuth(InvalidAuth)
Trait Implementations§
Source§impl Clone for AuthedError
impl Clone for AuthedError
Source§fn clone(&self) -> AuthedError
fn clone(&self) -> AuthedError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for AuthedError
impl RefUnwindSafe for AuthedError
impl Send for AuthedError
impl Sync for AuthedError
impl Unpin for AuthedError
impl UnsafeUnpin for AuthedError
impl UnwindSafe for AuthedError
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