pub enum EnvironmentSource {
EnvFile(PathBuf),
ProcessEnv,
ServerConfig(String),
Custom(HashMap<String, String>),
}Variants§
Trait Implementations§
Source§impl Clone for EnvironmentSource
impl Clone for EnvironmentSource
Source§fn clone(&self) -> EnvironmentSource
fn clone(&self) -> EnvironmentSource
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for EnvironmentSource
impl RefUnwindSafe for EnvironmentSource
impl Send for EnvironmentSource
impl Sync for EnvironmentSource
impl Unpin for EnvironmentSource
impl UnwindSafe for EnvironmentSource
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