pub struct EnvOverrideError {
pub env_var: String,
pub field: String,
pub message: String,
}Expand description
Error that occurred while applying an environment override.
Fields§
§env_var: StringEnvironment variable name.
field: StringField path being overridden.
message: StringError message.
Trait Implementations§
Source§impl Clone for EnvOverrideError
impl Clone for EnvOverrideError
Source§fn clone(&self) -> EnvOverrideError
fn clone(&self) -> EnvOverrideError
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 EnvOverrideError
impl Debug for EnvOverrideError
Auto Trait Implementations§
impl Freeze for EnvOverrideError
impl RefUnwindSafe for EnvOverrideError
impl Send for EnvOverrideError
impl Sync for EnvOverrideError
impl Unpin for EnvOverrideError
impl UnsafeUnpin for EnvOverrideError
impl UnwindSafe for EnvOverrideError
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