pub struct CompilerOptionsOverride {
pub ts_config_path: Option<String>,
pub webpack: Option<bool>,
pub webpack_config_path: Option<String>,
pub plugins: Option<Vec<Plugin>>,
pub assets: Option<Vec<Asset>>,
pub delete_out_dir: Option<bool>,
pub manual_restart: Option<bool>,
pub builder: Option<Builder>,
}Fields§
§ts_config_path: Option<String>§webpack: Option<bool>§webpack_config_path: Option<String>§plugins: Option<Vec<Plugin>>§assets: Option<Vec<Asset>>§delete_out_dir: Option<bool>§manual_restart: Option<bool>§builder: Option<Builder>Trait Implementations§
Source§impl Clone for CompilerOptionsOverride
impl Clone for CompilerOptionsOverride
Source§fn clone(&self) -> CompilerOptionsOverride
fn clone(&self) -> CompilerOptionsOverride
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 CompilerOptionsOverride
impl Debug for CompilerOptionsOverride
Source§impl Default for CompilerOptionsOverride
impl Default for CompilerOptionsOverride
Source§fn default() -> CompilerOptionsOverride
fn default() -> CompilerOptionsOverride
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompilerOptionsOverride
impl<'de> Deserialize<'de> for CompilerOptionsOverride
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
Source§impl PartialEq for CompilerOptionsOverride
impl PartialEq for CompilerOptionsOverride
Source§fn eq(&self, other: &CompilerOptionsOverride) -> bool
fn eq(&self, other: &CompilerOptionsOverride) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CompilerOptionsOverride
impl StructuralPartialEq for CompilerOptionsOverride
Auto Trait Implementations§
impl Freeze for CompilerOptionsOverride
impl RefUnwindSafe for CompilerOptionsOverride
impl Send for CompilerOptionsOverride
impl Sync for CompilerOptionsOverride
impl Unpin for CompilerOptionsOverride
impl UnsafeUnpin for CompilerOptionsOverride
impl UnwindSafe for CompilerOptionsOverride
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.