pub struct CompilerCommandOptions {
pub path: Option<String>,
pub webpack: Option<bool>,
pub webpack_path: Option<String>,
pub builder: Option<BuilderVariant>,
pub watch: Option<bool>,
pub watch_assets: Option<bool>,
pub type_check: Option<bool>,
pub preserve_watch_output: Option<bool>,
}Fields§
§path: Option<String>§webpack: Option<bool>§webpack_path: Option<String>§builder: Option<BuilderVariant>§watch: Option<bool>§watch_assets: Option<bool>§type_check: Option<bool>§preserve_watch_output: Option<bool>Trait Implementations§
Source§impl Clone for CompilerCommandOptions
impl Clone for CompilerCommandOptions
Source§fn clone(&self) -> CompilerCommandOptions
fn clone(&self) -> CompilerCommandOptions
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 CompilerCommandOptions
impl Debug for CompilerCommandOptions
Source§impl Default for CompilerCommandOptions
impl Default for CompilerCommandOptions
Source§fn default() -> CompilerCommandOptions
fn default() -> CompilerCommandOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for CompilerCommandOptions
impl PartialEq for CompilerCommandOptions
Source§fn eq(&self, other: &CompilerCommandOptions) -> bool
fn eq(&self, other: &CompilerCommandOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CompilerCommandOptions
impl StructuralPartialEq for CompilerCommandOptions
Auto Trait Implementations§
impl Freeze for CompilerCommandOptions
impl RefUnwindSafe for CompilerCommandOptions
impl Send for CompilerCommandOptions
impl Sync for CompilerCommandOptions
impl Unpin for CompilerCommandOptions
impl UnsafeUnpin for CompilerCommandOptions
impl UnwindSafe for CompilerCommandOptions
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.