Struct chromiumoxide::cdp::browser_protocol::page::SetBypassCspParams[][src]

pub struct SetBypassCspParams {
    pub enabled: bool,
}

Enable page Content Security Policy by-passing. setBypassCSP

Fields

enabled: bool

Whether to bypass page CSP.

Implementations

impl SetBypassCspParams[src]

pub fn new(enabled: impl Into<bool>) -> SetBypassCspParams[src]

impl SetBypassCspParams[src]

impl SetBypassCspParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SetBypassCspParams[src]

impl Command for SetBypassCspParams[src]

type Response = SetBypassCspReturns

The type of the response this request triggers on the chromium server

impl Debug for SetBypassCspParams[src]

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

impl Method for SetBypassCspParams[src]

impl MethodType for SetBypassCspParams[src]

impl PartialEq<SetBypassCspParams> for SetBypassCspParams[src]

impl Serialize for SetBypassCspParams[src]

impl StructuralPartialEq for SetBypassCspParams[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,