[][src]Struct rant::RantOptions

pub struct RantOptions {
    pub use_stdlib: bool,
    pub debug_mode: bool,
    pub seed: u64,
    pub enable_require: bool,
    pub enable_global_modules: bool,
    pub local_modules_path: Option<String>,
}

Provides options for customizing the creation of a Rant instance.

Fields

use_stdlib: bool

Specifies whether the standard library should be loaded.

debug_mode: bool

Enables debug mode, which includes additional debug information in compiled programs and more detailed runtime error data.

seed: u64

The initial seed to pass to the RNG. Defaults to 0.

enable_require: bool

Enables the [require] function, allowing modules to be loaded.

enable_global_modules: bool

Enables loading modules from RANT_MODULES_PATH.

local_modules_path: Option<String>

Specifies a preferred module loading path with higher precedence than the global module path. If not specified, looks in the current working directory.

Trait Implementations

impl Clone for RantOptions[src]

impl Debug for RantOptions[src]

impl Default for RantOptions[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>,