Basic example to extract an environment variable as String :
```rust use envextractor::{envvar, required};
fn loadpath() -> required::Result
Another example to use custom type :
rust
fn load_my_path() -> required::Result<MyPath> {
// Note that this is exactly the same as load_path()
env_var("PATH").as_required()
}
How to convert is represented using built-in std::str::FromStr
:
```rust
struct MyPath {
inner: String,
}
impl FromStr for MyPath {
type Err =
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(MyPath {
inner: s.to_string(),
})
}
} ```
Of course, required::Result
can tell us the key when it's not present (std::env::VarError
cannot).
rust
match load_my_path() {
Ok(path) => println!("path: {}", path.inner),
Err(NotPresent(key)) => println!("not present: {}", key),
Err(e) => println!("unexpected error: {:?}", e),
}
Use as_optional()
instead when handling optional value :
rust
let sample: Option<MyPath> = env_var("foooooo").as_optional()?;