[][src]Struct rant::RantOptions

pub struct RantOptions {
    pub use_stdlib: bool,
    pub debug_mode: bool,
    pub seed: u64,
}

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.

Trait Implementations

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