pub struct CompilerOptions {
pub keep_imports: bool,
pub jsx: bool,
pub civet_options: Vec<String>,
pub civet_global: Vec<String>,
pub cls: bool,
pub included: bool,
pub local_declarations: HashMap<String, Declaration>,
pub global_declarations: HashMap<String, Declaration>,
}Fields§
§keep_imports: bool§jsx: bool§civet_options: Vec<String>§civet_global: Vec<String>§cls: bool§included: bool§local_declarations: HashMap<String, Declaration>§global_declarations: HashMap<String, Declaration>Trait Implementations§
Source§impl Default for CompilerOptions
impl Default for CompilerOptions
Source§fn default() -> CompilerOptions
fn default() -> CompilerOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CompilerOptions
impl RefUnwindSafe for CompilerOptions
impl Send for CompilerOptions
impl Sync for CompilerOptions
impl Unpin for CompilerOptions
impl UnwindSafe for CompilerOptions
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