pub enum AuthenticationRequest {
Ok,
CleartextPassword,
Extension(Arc<dyn AuthenticationRequestExtension>),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for AuthenticationRequest
impl Clone for AuthenticationRequest
Source§fn clone(&self) -> AuthenticationRequest
fn clone(&self) -> AuthenticationRequest
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 AuthenticationRequest
impl !RefUnwindSafe for AuthenticationRequest
impl Send for AuthenticationRequest
impl Sync for AuthenticationRequest
impl Unpin for AuthenticationRequest
impl UnsafeUnpin for AuthenticationRequest
impl !UnwindSafe for AuthenticationRequest
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