pub struct TlsSettings {
pub connection_id: Option<Ulid>,
pub tls_version: Option<NamedU16>,
pub cipher_suite: Option<NamedU16>,
pub ja3: Option<Ja3>,
pub ja4: Option<Ja4>,
}Expand description
TLS connection metadata associated with a session entry.
Fields§
§connection_id: Option<Ulid>§tls_version: Option<NamedU16>§cipher_suite: Option<NamedU16>§ja3: Option<Ja3>§ja4: Option<Ja4>Trait Implementations§
Source§impl Clone for TlsSettings
impl Clone for TlsSettings
Source§fn clone(&self) -> TlsSettings
fn clone(&self) -> TlsSettings
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 TlsSettings
impl Debug for TlsSettings
Source§impl<'de> Deserialize<'de> for TlsSettings
impl<'de> Deserialize<'de> for TlsSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TlsSettings
impl RefUnwindSafe for TlsSettings
impl Send for TlsSettings
impl Sync for TlsSettings
impl Unpin for TlsSettings
impl UnsafeUnpin for TlsSettings
impl UnwindSafe for TlsSettings
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