pub struct EnvVariablesProvider { /* private fields */ }
Expand description
A [Provider
] that uses environment variables.
Implementations§
Source§impl EnvVariablesProvider
impl EnvVariablesProvider
Sourcepub fn new(
prefix: Option<impl Into<String>>,
env_fetcher: impl Fn(&str) -> Result<String, VarError> + Send + Sync + 'static,
dotenv_path: Option<PathBuf>,
) -> Self
pub fn new( prefix: Option<impl Into<String>>, env_fetcher: impl Fn(&str) -> Result<String, VarError> + Send + Sync + 'static, dotenv_path: Option<PathBuf>, ) -> Self
Creates a new EnvProvider.
prefix
- The string prefix to use to distinguish an environment variable that should be used. If not set, the default prefix is used.env_fetcher
- The function to use to fetch an environment variable.dotenv_path
- The path to the .env file to load environment variables from. If not set, no .env file is loaded.
Trait Implementations§
Source§impl Debug for EnvVariablesProvider
impl Debug for EnvVariablesProvider
Source§impl Default for EnvVariablesProvider
impl Default for EnvVariablesProvider
Source§impl Provider for EnvVariablesProvider
impl Provider for EnvVariablesProvider
Auto Trait Implementations§
impl !Freeze for EnvVariablesProvider
impl !RefUnwindSafe for EnvVariablesProvider
impl Send for EnvVariablesProvider
impl Sync for EnvVariablesProvider
impl Unpin for EnvVariablesProvider
impl !UnwindSafe for EnvVariablesProvider
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more