usecrate::tls::{TlsCtx, TlsMode};/// Trusted Context
////// Secure connection with protected private key. Data is encrypted and certificates are verified.
////// Used by clients without mTLS.
#[derive(Debug, Default)]pubstructTrustedCtx{}implTrustedCtx{/// New instance
#[inline]pubconstfnnew()->Self{Self{}}}implTlsCtx forTrustedCtx{constTY: TlsMode =TlsMode::Verified;}