#[non_exhaustive]pub struct EnvConfigValue {
pub value: OsString,
pub force: bool,
pub relative: bool,
}Expand description
A value of the [env] table.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.value: OsString§force: bool§relative: boolTrait Implementations§
Source§impl Clone for EnvConfigValue
impl Clone for EnvConfigValue
Source§fn clone(&self) -> EnvConfigValue
fn clone(&self) -> EnvConfigValue
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 moreSource§impl Debug for EnvConfigValue
impl Debug for EnvConfigValue
Auto Trait Implementations§
impl Freeze for EnvConfigValue
impl RefUnwindSafe for EnvConfigValue
impl Send for EnvConfigValue
impl Sync for EnvConfigValue
impl Unpin for EnvConfigValue
impl UnsafeUnpin for EnvConfigValue
impl UnwindSafe for EnvConfigValue
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