pub struct InlineConfig {
pub browser: BrowserChoice,
pub browser_bin: Option<PathBuf>,
}Expand description
Browser configuration for an inline ephemeral host.
Default keeps the historical behavior — BrowserChoice::Auto with no
explicit binary, i.e. auto-discovery. Set browser_bin to point at a
specific browser when auto-discovery can’t find one (e.g. a non-standard
install location).
Fields§
§browser: BrowserChoice§browser_bin: Option<PathBuf>Trait Implementations§
Source§impl Clone for InlineConfig
impl Clone for InlineConfig
Source§fn clone(&self) -> InlineConfig
fn clone(&self) -> InlineConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InlineConfig
impl Debug for InlineConfig
Source§impl Default for InlineConfig
impl Default for InlineConfig
Source§fn default() -> InlineConfig
fn default() -> InlineConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InlineConfig
impl RefUnwindSafe for InlineConfig
impl Send for InlineConfig
impl Sync for InlineConfig
impl Unpin for InlineConfig
impl UnsafeUnpin for InlineConfig
impl UnwindSafe for InlineConfig
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