pub struct LocalBrowserLaunchOptions {
pub headless: Option<bool>,
pub executable_path: Option<String>,
pub args: Vec<String>,
pub user_data_dir: Option<String>,
pub viewport: Option<(i32, i32)>,
pub devtools: Option<bool>,
pub ignore_https_errors: Option<bool>,
pub cdp_url: Option<String>,
}Fields§
§headless: Option<bool>§executable_path: Option<String>§args: Vec<String>§user_data_dir: Option<String>§viewport: Option<(i32, i32)>§devtools: Option<bool>§ignore_https_errors: Option<bool>§cdp_url: Option<String>Trait Implementations§
Source§impl Clone for LocalBrowserLaunchOptions
impl Clone for LocalBrowserLaunchOptions
Source§fn clone(&self) -> LocalBrowserLaunchOptions
fn clone(&self) -> LocalBrowserLaunchOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocalBrowserLaunchOptions
impl Debug for LocalBrowserLaunchOptions
Source§impl Default for LocalBrowserLaunchOptions
impl Default for LocalBrowserLaunchOptions
Source§fn default() -> LocalBrowserLaunchOptions
fn default() -> LocalBrowserLaunchOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LocalBrowserLaunchOptions
impl RefUnwindSafe for LocalBrowserLaunchOptions
impl Send for LocalBrowserLaunchOptions
impl Sync for LocalBrowserLaunchOptions
impl Unpin for LocalBrowserLaunchOptions
impl UnsafeUnpin for LocalBrowserLaunchOptions
impl UnwindSafe for LocalBrowserLaunchOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more