pub struct SourceCompilerOptions {
pub source_map: Option<bool>,
pub inline_source_map: Option<bool>,
pub out_dir: Option<String>,
pub root_dir: Option<String>,
pub base_url: Option<String>,
pub paths: BTreeMap<String, Vec<String>>,
}Fields§
§source_map: Option<bool>§inline_source_map: Option<bool>§out_dir: Option<String>§root_dir: Option<String>§base_url: Option<String>§paths: BTreeMap<String, Vec<String>>Trait Implementations§
Source§impl Clone for SourceCompilerOptions
impl Clone for SourceCompilerOptions
Source§fn clone(&self) -> SourceCompilerOptions
fn clone(&self) -> SourceCompilerOptions
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 SourceCompilerOptions
impl Debug for SourceCompilerOptions
Source§impl Default for SourceCompilerOptions
impl Default for SourceCompilerOptions
Source§fn default() -> SourceCompilerOptions
fn default() -> SourceCompilerOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for SourceCompilerOptions
impl PartialEq for SourceCompilerOptions
Source§fn eq(&self, other: &SourceCompilerOptions) -> bool
fn eq(&self, other: &SourceCompilerOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SourceCompilerOptions
impl StructuralPartialEq for SourceCompilerOptions
Auto Trait Implementations§
impl Freeze for SourceCompilerOptions
impl RefUnwindSafe for SourceCompilerOptions
impl Send for SourceCompilerOptions
impl Sync for SourceCompilerOptions
impl Unpin for SourceCompilerOptions
impl UnsafeUnpin for SourceCompilerOptions
impl UnwindSafe for SourceCompilerOptions
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.