#[repr(u8)]pub enum TlsCipherAu {
Null = 0,
Psk = 1,
Krb5 = 2,
Srp = 3,
Srp_Dss = 4,
Srp_Rsa = 5,
Dss = 6,
Rsa = 7,
Dhe = 8,
Ecdsa = 9,
Eccpwd = 10,
Tls13 = 11,
}
Expand description
Authentication methods
Variants§
Null = 0
Psk = 1
Krb5 = 2
Srp = 3
Srp_Dss = 4
Srp_Rsa = 5
Dss = 6
Rsa = 7
Dhe = 8
Ecdsa = 9
Eccpwd = 10
Tls13 = 11
Trait Implementations§
Source§impl Clone for TlsCipherAu
impl Clone for TlsCipherAu
Source§fn clone(&self) -> TlsCipherAu
fn clone(&self) -> TlsCipherAu
Returns a copy 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 TlsCipherAu
impl Debug for TlsCipherAu
Source§impl PartialEq for TlsCipherAu
impl PartialEq for TlsCipherAu
Source§impl TryFrom<u8> for TlsCipherAu
impl TryFrom<u8> for TlsCipherAu
Source§type Error = TryFromPrimitiveError<TlsCipherAu>
type Error = TryFromPrimitiveError<TlsCipherAu>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for TlsCipherAu
impl TryFromPrimitive for TlsCipherAu
const NAME: &'static str = "TlsCipherAu"
type Primitive = u8
type Error = TryFromPrimitiveError<TlsCipherAu>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for TlsCipherAu
impl Eq for TlsCipherAu
impl StructuralPartialEq for TlsCipherAu
Auto Trait Implementations§
impl Freeze for TlsCipherAu
impl RefUnwindSafe for TlsCipherAu
impl Send for TlsCipherAu
impl Sync for TlsCipherAu
impl Unpin for TlsCipherAu
impl UnwindSafe for TlsCipherAu
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