pub struct LaunchConfig {
pub executable: Option<String>,
pub channel: Option<String>,
pub headless: Option<bool>,
pub extra_args: Option<Vec<String>>,
}Fields§
§executable: Option<String>§channel: Option<String>§headless: Option<bool>§extra_args: Option<Vec<String>>Trait Implementations§
Source§impl Clone for LaunchConfig
impl Clone for LaunchConfig
Source§fn clone(&self) -> LaunchConfig
fn clone(&self) -> LaunchConfig
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 LaunchConfig
impl Debug for LaunchConfig
Source§impl Default for LaunchConfig
impl Default for LaunchConfig
Source§fn default() -> LaunchConfig
fn default() -> LaunchConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LaunchConfigwhere
LaunchConfig: Default,
impl<'de> Deserialize<'de> for LaunchConfigwhere
LaunchConfig: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for LaunchConfig
impl RefUnwindSafe for LaunchConfig
impl Send for LaunchConfig
impl Sync for LaunchConfig
impl Unpin for LaunchConfig
impl UnsafeUnpin for LaunchConfig
impl UnwindSafe for LaunchConfig
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