pub struct SecurityDetails {Show 15 fields
pub protocol: String,
pub key_exchange: String,
pub key_exchange_group: Option<String>,
pub cipher: String,
pub mac: Option<String>,
pub certificate_id: CertificateId,
pub subject_name: String,
pub san_list: Vec<String>,
pub issuer: String,
pub valid_from: TimeSinceEpoch,
pub valid_to: TimeSinceEpoch,
pub signed_certificate_timestamp_list: Vec<SignedCertificateTimestamp>,
pub certificate_transparency_compliance: CertificateTransparencyCompliance,
pub server_signature_algorithm: Option<JsUInt>,
pub encrypted_client_hello: bool,
}Fields§
§protocol: String§key_exchange: String§key_exchange_group: Option<String>§cipher: String§mac: Option<String>§certificate_id: CertificateId§subject_name: String§san_list: Vec<String>§issuer: String§valid_from: TimeSinceEpoch§valid_to: TimeSinceEpoch§signed_certificate_timestamp_list: Vec<SignedCertificateTimestamp>§certificate_transparency_compliance: CertificateTransparencyCompliance§server_signature_algorithm: Option<JsUInt>§encrypted_client_hello: boolTrait Implementations§
Source§impl Clone for SecurityDetails
impl Clone for SecurityDetails
Source§fn clone(&self) -> SecurityDetails
fn clone(&self) -> SecurityDetails
Returns a duplicate 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 SecurityDetails
impl Debug for SecurityDetails
Source§impl<'de> Deserialize<'de> for SecurityDetails
impl<'de> Deserialize<'de> for SecurityDetails
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
Source§impl PartialEq for SecurityDetails
impl PartialEq for SecurityDetails
Source§impl Serialize for SecurityDetails
impl Serialize for SecurityDetails
impl StructuralPartialEq for SecurityDetails
Auto Trait Implementations§
impl Freeze for SecurityDetails
impl RefUnwindSafe for SecurityDetails
impl Send for SecurityDetails
impl Sync for SecurityDetails
impl Unpin for SecurityDetails
impl UnwindSafe for SecurityDetails
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