pub struct ErgConfig {
Show 16 fields pub mode: ErgMode, pub opt_level: u8, pub no_std: bool, pub py_magic_num: Option<u32>, pub py_command: Option<&'static str>, pub target_version: Option<PythonVersion>, pub py_server_timeout: u64, pub quiet_repl: bool, pub show_type: bool, pub input: Input, pub output_dir: Option<&'static str>, pub module: &'static str, pub verbose: u8, pub ps1: &'static str, pub ps2: &'static str, pub runtime_args: Vec<&'static str>,
}

Fields§

§mode: ErgMode§opt_level: u8

optimization level.

  • 0: no optimization
  • 1 (default): e.g. constant folding, dead code elimination
  • 2: e.g. static dispatching, inlining, peephole
  • 3: e.g. JIT compiling
§no_std: bool§py_magic_num: Option<u32>§py_command: Option<&'static str>§target_version: Option<PythonVersion>§py_server_timeout: u64§quiet_repl: bool§show_type: bool§input: Input§output_dir: Option<&'static str>§module: &'static str

module name to be executed

§verbose: u8

verbosity level for system messages.

  • 0: display errors, warns
  • 1 (default): display errors, warnings and hints
§ps1: &'static str

needed for jupyter-erg

§ps2: &'static str§runtime_args: Vec<&'static str>

Implementations§

clone alias (since the actual clone cost is low)

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.