Struct chrome_remote_interface_model::security::SecurityStateChangedEventBuilder[][src]

pub struct SecurityStateChangedEventBuilder { /* fields omitted */ }

Implementations

impl SecurityStateChangedEventBuilder[src]

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

Security state.

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

👎 Deprecated

True if the page was loaded over cryptographic transport such as HTTPS.

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

List of explanations for the security state. If the overall security state is insecure or warning, at least one corresponding explanation should be included.

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

👎 Deprecated

Information about insecure content on the page.

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

Overrides user-visible description of the state.

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

Trait Implementations

impl Clone for SecurityStateChangedEventBuilder[src]

impl Debug for SecurityStateChangedEventBuilder[src]

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