Enum dazeus::ConfigGroup [] [src]

pub enum ConfigGroup {
    Plugin,
    Core,
}

The type of config that should be retrieved.

Variants

Plugin

Indicates a config value that should be retrieved from the plugin settings.

Core

Indicates a config value that should be retrieved from the core settings.

Trait Implementations

impl PartialEq for ConfigGroup
[src]

fn eq(&self, __arg_0: &ConfigGroup) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for ConfigGroup
[src]

fn clone(&self) -> ConfigGroup

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for ConfigGroup
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl ToString for ConfigGroup
[src]

fn to_string(&self) -> String

Converts the given value to a String. Read more

impl FromStr for ConfigGroup
[src]

type Err = ParseConfigGroupError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, ParseConfigGroupError>

Parses a string s to return a value of this type. Read more