Struct chrome_remote_interface_model::network::SecurityDetailsBuilder[][src]

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

Implementations

impl SecurityDetailsBuilder[src]

pub fn protocol(&mut self, v: String) -> &mut Self[src]

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

pub fn key_exchange(&mut self, v: String) -> &mut Self[src]

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

pub fn key_exchange_group(&mut self, v: String) -> &mut Self[src]

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

pub fn cipher(&mut self, v: String) -> &mut Self[src]

Cipher name.

pub fn mac(&mut self, v: String) -> &mut Self[src]

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

pub fn certificate_id(&mut self, v: CertificateId) -> &mut Self[src]

Certificate ID value.

pub fn subject_name(&mut self, v: String) -> &mut Self[src]

Certificate subject name.

pub fn san_list(&mut self, v: Vec<String>) -> &mut Self[src]

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

pub fn issuer(&mut self, v: String) -> &mut Self[src]

Name of the issuing CA.

pub fn valid_from(&mut self, v: TimeSinceEpoch) -> &mut Self[src]

Certificate valid from date.

pub fn valid_to(&mut self, v: TimeSinceEpoch) -> &mut Self[src]

Certificate valid to (expiration) date

pub fn signed_certificate_timestamp_list(
    &mut self,
    v: Vec<SignedCertificateTimestamp>
) -> &mut Self
[src]

List of signed certificate timestamps (SCTs).

pub fn certificate_transparency_compliance(
    &mut self,
    v: CertificateTransparencyCompliance
) -> &mut Self
[src]

Whether the request complied with Certificate Transparency policy

pub fn build(&mut self) -> Result<SecurityDetails, &'static str>[src]

Trait Implementations

impl Clone for SecurityDetailsBuilder[src]

impl Debug for SecurityDetailsBuilder[src]

impl Default for SecurityDetailsBuilder[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> 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.