[][src]Struct gluon::import::DatabaseMut

pub struct DatabaseMut { /* fields omitted */ }

Methods

impl DatabaseMut[src]

pub fn implicit_prelude(self, implicit_prelude: bool) -> Self[src]

Sets whether the implicit prelude should be include when compiling a file using this compiler (default: true)

pub fn set_implicit_prelude(&mut self, implicit_prelude: bool)[src]

pub fn emit_debug_info(self, emit_debug_info: bool) -> Self[src]

Sets whether the compiler should emit debug information such as source maps and variable names. (default: true)

pub fn set_emit_debug_info(&mut self, emit_debug_info: bool)[src]

pub fn full_metadata(self, full_metadata: bool) -> Self[src]

Sets whether full metadata is required (default: false)

pub fn set_full_metadata(&mut self, full_metadata: bool)[src]

pub fn use_standard_lib(self, use_standard_lib: bool) -> Self[src]

Sets whether internal standard library is searched for requested modules (default: true)

pub fn set_use_standard_lib(&mut self, use_standard_lib: bool)[src]

pub fn optimize(self, optimize: bool) -> Self[src]

Whether the bytecode should be optimized (default: true)

pub fn set_optimize(&mut self, optimize: bool)[src]

pub fn run_io(self, run_io: bool) -> Self[src]

Sets whether IO expressions are evaluated. (default: false)

pub fn set_run_io(&mut self, run_io: bool)[src]

Trait Implementations

impl Deref for DatabaseMut[src]

type Target = CompilerDatabase

The resulting type after dereferencing.

impl DerefMut for DatabaseMut[src]

impl Drop for DatabaseMut[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'_, T> Captures<'_> for T[src]

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

type Remainder = Choices

impl<T> Downcast for T where
    T: Any

impl<T> DowncastArc for T where
    T: Downcast + Send + Sync
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<D, T> FromPtr<D> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U, I> LiftInto<U, I> for T where
    U: LiftFrom<T, I>, 

impl<Source> Sculptor<HNil, HNil> for Source

type Remainder = Source

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,