pub struct EnvVarOccurrence<'a> {
pub name: &'a str,
pub default: Option<&'a str>,
pub base_evaluation: BaseEvaluation,
}
Fields§
§name: &'a str
§default: Option<&'a str>
§base_evaluation: BaseEvaluation
Trait Implementations§
Source§impl AsRef<BaseEvaluation> for EnvVarOccurrence<'_>
impl AsRef<BaseEvaluation> for EnvVarOccurrence<'_>
Source§fn as_ref(&self) -> &BaseEvaluation
fn as_ref(&self) -> &BaseEvaluation
Converts this type into a shared reference of the (usually inferred) input type.
Auto Trait Implementations§
impl<'a> Freeze for EnvVarOccurrence<'a>
impl<'a> RefUnwindSafe for EnvVarOccurrence<'a>
impl<'a> Send for EnvVarOccurrence<'a>
impl<'a> Sync for EnvVarOccurrence<'a>
impl<'a> Unpin for EnvVarOccurrence<'a>
impl<'a> UnwindSafe for EnvVarOccurrence<'a>
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