pub enum AuthenticationMessage {
Ok,
KerberosV5,
CleartextPassword,
MD5Password([u8; 4]),
SCMCredential,
GSS,
GSSContinue(Vec<u8>),
SSPI,
SASL(Vec<String>),
SASLContinue(Vec<u8>),
SASLFinal(Vec<u8>),
}Variants§
Ok
KerberosV5
CleartextPassword
MD5Password([u8; 4])
SCMCredential
GSS
GSSContinue(Vec<u8>)
SSPI
SASL(Vec<String>)
SASLContinue(Vec<u8>)
SASLFinal(Vec<u8>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuthenticationMessage
impl RefUnwindSafe for AuthenticationMessage
impl Send for AuthenticationMessage
impl Sync for AuthenticationMessage
impl Unpin for AuthenticationMessage
impl UnwindSafe for AuthenticationMessage
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