pub enum AuthInvocationError {
Domain(AuthenticateError),
Runtime(RuntimeFailure),
}Variants§
Domain(AuthenticateError)
Runtime(RuntimeFailure)
Trait Implementations§
Source§impl Clone for AuthInvocationError
impl Clone for AuthInvocationError
Source§fn clone(&self) -> AuthInvocationError
fn clone(&self) -> AuthInvocationError
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 moreSource§impl Debug for AuthInvocationError
impl Debug for AuthInvocationError
Source§impl PartialEq for AuthInvocationError
impl PartialEq for AuthInvocationError
impl StructuralPartialEq for AuthInvocationError
Auto Trait Implementations§
impl Freeze for AuthInvocationError
impl RefUnwindSafe for AuthInvocationError
impl Send for AuthInvocationError
impl Sync for AuthInvocationError
impl Unpin for AuthInvocationError
impl UnsafeUnpin for AuthInvocationError
impl UnwindSafe for AuthInvocationError
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