Enum config_struct::DynamicLoading[][src]

pub enum DynamicLoading {
    Always,
    DebugOnly,
    Never,
}

When to perform dynamic loading from the config file itself.

Variants

Always load the config from file.

Load from file in debug mode, but use the statically-included const in release mode.

Never load dynamically. Always use the statically-included const.

Trait Implementations

impl Debug for DynamicLoading
[src]

Formats the value using the given formatter. Read more

impl Clone for DynamicLoading
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DynamicLoading
[src]

impl PartialEq for DynamicLoading
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for DynamicLoading
[src]

Auto Trait Implementations