pub struct StartProcessPlan {Show 16 fields
pub entry_file: String,
pub source_root: String,
pub debug_flag: Option<DebugFlag>,
pub out_dir_name: PathBuf,
pub binary_to_run: String,
pub requested_exec: Option<String>,
pub shell: bool,
pub env_file: Vec<String>,
pub enable_source_maps: bool,
pub child_process_args: Vec<String>,
pub manifest_path: Option<PathBuf>,
pub source_root_output: PathBuf,
pub fallback_output: PathBuf,
pub source_root_command: RunnerCommand,
pub fallback_command: RunnerCommand,
pub restart: StartRestartPlan,
}Fields§
§entry_file: String§source_root: String§debug_flag: Option<DebugFlag>§out_dir_name: PathBuf§binary_to_run: String§requested_exec: Option<String>§shell: bool§env_file: Vec<String>§enable_source_maps: bool§child_process_args: Vec<String>§manifest_path: Option<PathBuf>§source_root_output: PathBuf§fallback_output: PathBuf§source_root_command: RunnerCommand§fallback_command: RunnerCommand§restart: StartRestartPlanTrait Implementations§
Source§impl Clone for StartProcessPlan
impl Clone for StartProcessPlan
Source§fn clone(&self) -> StartProcessPlan
fn clone(&self) -> StartProcessPlan
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 StartProcessPlan
impl Debug for StartProcessPlan
Source§impl PartialEq for StartProcessPlan
impl PartialEq for StartProcessPlan
Source§fn eq(&self, other: &StartProcessPlan) -> bool
fn eq(&self, other: &StartProcessPlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StartProcessPlan
impl StructuralPartialEq for StartProcessPlan
Auto Trait Implementations§
impl Freeze for StartProcessPlan
impl RefUnwindSafe for StartProcessPlan
impl Send for StartProcessPlan
impl Sync for StartProcessPlan
impl Unpin for StartProcessPlan
impl UnsafeUnpin for StartProcessPlan
impl UnwindSafe for StartProcessPlan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.