Struct chromiumoxide::browser::BrowserConfigBuilder[][src]

pub struct BrowserConfigBuilder { /* fields omitted */ }

Implementations

impl BrowserConfigBuilder[src]

pub fn window_size(self, width: u32, height: u32) -> Self[src]

pub fn no_sandbox(self) -> Self[src]

pub fn with_head(self) -> Self[src]

pub fn incognito(self) -> Self[src]

pub fn respect_https_errors(self) -> Self[src]

pub fn request_timeout(self, timeout: Duration) -> Self[src]

pub fn user_data_dir(self, data_dir: impl AsRef<Path>) -> Self[src]

pub fn chrome_executable(self, path: impl AsRef<Path>) -> Self[src]

pub fn extension(self, extension: impl Into<String>) -> Self[src]

pub fn extensions<I, S>(self, extensions: I) -> Self where
    I: IntoIterator<Item = S>,
    S: Into<String>, 
[src]

pub fn env(self, key: impl Into<String>, val: impl Into<String>) -> Self[src]

pub fn envs<I, K, V>(self, envs: I) -> Self where
    I: IntoIterator<Item = (K, V)>,
    K: Into<String>,
    V: Into<String>, 
[src]

pub fn build(self) -> Result<BrowserConfig, String>[src]

Trait Implementations

impl Clone for BrowserConfigBuilder[src]

impl Debug for BrowserConfigBuilder[src]

impl Default for BrowserConfigBuilder[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> 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>,