Struct chrome_remote_interface::Launcher[][src]

pub struct Launcher { /* fields omitted */ }

Launcher (Builder) for Browser.

Implementations

impl Launcher[src]

pub fn browser_type(&mut self, value: BrowserType) -> &mut Self[src]

Specify launching browser type. (Default: Chromium)

pub fn user_data_dir<P: AsRef<Path>>(&mut self, path: P) -> &mut Self[src]

Specify user data dir. (If not specified: using temporary file)

pub fn user_data_dir_default(&mut self) -> &mut Self[src]

Use default user data dir. (If not specified: using temporary file)

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

Specify headless mode or not. (Default: headless)

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

Specify protocol transport using pipe or not (websocket). (Default: Windows/Mac: false, Other: true)

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

Whether or not browser process stdout / stderr. (Default: false)

pub async fn launch(&mut self) -> Result<Browser, BrowserError>[src]

Launching browser.

Trait Implementations

impl Debug for Launcher[src]

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