Crates.io | defvar |
lib.rs | defvar |
version | 0.1.0 |
source | src |
created_at | 2024-08-13 22:18:40.928865 |
updated_at | 2024-08-13 22:18:40.928865 |
description | A macro that makes defining environment variables easy |
homepage | https://deadbeef.moe/crates/defvar |
repository | https://github.com/javbit/defvar |
max_upload_size | |
id | 1336560 |
size | 4,567 |
Defvar
makes defining environment variables easyDefvar
provides a macro for declaring environment variables. It
also makes it easy to describe how to parse the value and provide a
default.
use defvar::defvar;
use std::time::Duration;
// Defining simple variables is easy.
defvar! { GREETING: String = "Howdy" }
// The macro supports types other than String. You can provide your
// own parsing logic.
defvar! { TIMES: usize = 1, or try t => t.parse() }
// Here is a more complicated example.
defvar! { DURATION: Duration = Duration::from_secs(1), or try d => d.parse().map(Duration::from_secs) }