pub struct EnvAlias {
pub lifeloop: &'static str,
pub ccd_compat: &'static str,
}Expand description
A single CCD→Lifeloop env-var alias.
Each adapter declares the keys it cares about as a &'static [EnvAlias].
When both the lifeloop and ccd_compat keys are set in the process
environment, the lifeloop value wins and EnvWarningSink records a
single bounded warning per resolved key per process.
Fields§
§lifeloop: &'static str§ccd_compat: &'static strTrait Implementations§
Auto Trait Implementations§
impl Freeze for EnvAlias
impl RefUnwindSafe for EnvAlias
impl Send for EnvAlias
impl Sync for EnvAlias
impl Unpin for EnvAlias
impl UnsafeUnpin for EnvAlias
impl UnwindSafe for EnvAlias
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