pub enum AuthenticateExn {
Success(AuthResponse),
ApplicationException(ApplicationException),
}
Variants§
Success(AuthResponse)
ApplicationException(ApplicationException)
Trait Implementations§
Source§impl Clone for AuthenticateExn
impl Clone for AuthenticateExn
Source§fn clone(&self) -> AuthenticateExn
fn clone(&self) -> AuthenticateExn
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 AuthenticateExn
impl Debug for AuthenticateExn
Source§impl<P> Deserialize<P> for AuthenticateExnwhere
P: ProtocolReader,
impl<P> Deserialize<P> for AuthenticateExnwhere
P: ProtocolReader,
Source§impl From<ApplicationException> for AuthenticateExn
impl From<ApplicationException> for AuthenticateExn
Source§fn from(exn: ApplicationException) -> Self
fn from(exn: ApplicationException) -> Self
Converts to this type from the input type.
Source§impl<P> Serialize<P> for AuthenticateExnwhere
P: ProtocolWriter,
impl<P> Serialize<P> for AuthenticateExnwhere
P: ProtocolWriter,
Auto Trait Implementations§
impl Freeze for AuthenticateExn
impl RefUnwindSafe for AuthenticateExn
impl Send for AuthenticateExn
impl Sync for AuthenticateExn
impl Unpin for AuthenticateExn
impl UnwindSafe for AuthenticateExn
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