Struct chromiumoxide::cdp::browser_protocol::target::CreateBrowserContextParams[][src]

pub struct CreateBrowserContextParams {
    pub dispose_on_detach: Option<bool>,
    pub proxy_server: Option<String>,
    pub proxy_bypass_list: Option<String>,
}

Creates a new empty BrowserContext. Similar to an incognito profile but you can have more than one. createBrowserContext

Fields

dispose_on_detach: Option<bool>

If specified, disposes this context when debugging session disconnects.

proxy_server: Option<String>

Proxy server, similar to the one passed to –proxy-server

proxy_bypass_list: Option<String>

Proxy bypass list, similar to the one passed to –proxy-bypass-list

Implementations

impl CreateBrowserContextParams[src]

impl CreateBrowserContextParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for CreateBrowserContextParams[src]

impl Command for CreateBrowserContextParams[src]

type Response = CreateBrowserContextReturns

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

impl Debug for CreateBrowserContextParams[src]

impl Default for CreateBrowserContextParams[src]

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

impl Method for CreateBrowserContextParams[src]

impl MethodType for CreateBrowserContextParams[src]

impl PartialEq<CreateBrowserContextParams> for CreateBrowserContextParams[src]

impl Serialize for CreateBrowserContextParams[src]

impl StructuralPartialEq for CreateBrowserContextParams[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>,