Struct chrome_remote_interface_model::network::SecurityDetails[][src]

pub struct SecurityDetails { /* fields omitted */ }
This is supported on crate features Network and Debugger and Runtime and Security only.

Security details about a request.

Implementations

impl SecurityDetails[src]

pub fn builder() -> SecurityDetailsBuilder[src]

pub fn protocol(&self) -> &str[src]

Protocol name (e.g. "TLS 1.2" or "QUIC").

pub fn key_exchange(&self) -> &str[src]

Key Exchange used by the connection, or the empty string if not applicable.

pub fn key_exchange_group(&self) -> Option<&String>[src]

(EC)DH group used by the connection, if applicable.

pub fn cipher(&self) -> &str[src]

Cipher name.

pub fn mac(&self) -> Option<&String>[src]

TLS MAC. Note that AEAD ciphers do not have separate MACs.

pub fn certificate_id(&self) -> &CertificateId[src]

Certificate ID value.

pub fn subject_name(&self) -> &str[src]

Certificate subject name.

pub fn san_list(&self) -> &[String]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Subject Alternative Name (SAN) DNS names and IP addresses.

pub fn issuer(&self) -> &str[src]

Name of the issuing CA.

pub fn valid_from(&self) -> &TimeSinceEpoch[src]

Certificate valid from date.

pub fn valid_to(&self) -> &TimeSinceEpoch[src]

Certificate valid to (expiration) date

pub fn signed_certificate_timestamp_list(&self) -> &[SignedCertificateTimestamp]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

List of signed certificate timestamps (SCTs).

pub fn certificate_transparency_compliance(
    &self
) -> &CertificateTransparencyCompliance
[src]

Whether the request complied with Certificate Transparency policy

Trait Implementations

impl Clone for SecurityDetails[src]

impl Debug for SecurityDetails[src]

impl<'de> Deserialize<'de> for SecurityDetails[src]

impl Serialize for SecurityDetails[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.