#env #default #concat #default-env

macro default-env

The env! macro but with a default value

2 releases

0.1.1 Jun 21, 2019
0.1.0 Jun 21, 2019

#32 in #concat

Download history 4909/week @ 2024-12-10 3354/week @ 2024-12-17 2004/week @ 2024-12-24 2570/week @ 2024-12-31 2984/week @ 2025-01-07 3931/week @ 2025-01-14 3079/week @ 2025-01-21 4055/week @ 2025-01-28 3032/week @ 2025-02-04 3632/week @ 2025-02-11 3521/week @ 2025-02-18 2765/week @ 2025-02-25 2638/week @ 2025-03-04 2899/week @ 2025-03-11 2697/week @ 2025-03-18 2823/week @ 2025-03-25

11,462 downloads per month
Used in 12 crates (5 directly)

MIT license

3KB

default-env

default_env! is a macro like env! that returns a default value if the environment variable is not found. Unlike option_env!, the output of default_env! can be used in macros (because who doesn't love macros in their macros?).

Example

macro_rules! long_str {
  () => {
    concat!(
        "Hello, ", default_env!("USER", "anonymous user"), ".",
        "Today is ", default_env!("WEEKDAY", compile_error!("You exist in a land beyond time."))
      )
  }
}

Dependencies

~2MB
~48K SLoC