Enum rocket::config::Environment [] [src]

pub enum Environment {
    Development,
    Staging,
    Production,
}

An enum corresponding to the valid configuration environments.

Variants

The development environment.

The staging environment.

The production environment.

Methods

impl Environment
[src]

Retrieves the "active" environment as determined by the ROCKET_ENV environment variable. If ROCKET_ENV is not set, returns Development.

Errors

Returns a BadEnv ConfigError if ROCKET_ENV contains an invalid environment name.

Trait Implementations

impl Hash for Environment
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq for Environment
[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 Environment
[src]

impl Debug for Environment
[src]

Formats the value using the given formatter.

impl Clone for Environment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Environment
[src]

impl FromStr for Environment
[src]

The associated error which can be returned from parsing.

Parses a configuration environment from a string. Should be used indirectly via str's parse method.

Examples

Parsing a development environment:

use rocket::config::Environment;

let env = "development".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Development);

let env = "dev".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Development);

let env = "devel".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Development);

Parsing a staging environment:

use rocket::config::Environment;

let env = "staging".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Staging);

let env = "stage".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Staging);

Parsing a production environment:

use rocket::config::Environment;

let env = "production".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Production);

let env = "prod".parse::<Environment>();
assert_eq!(env.unwrap(), Environment::Production);

impl Display for Environment
[src]

Formats the value using the given formatter.