pub struct LowerCtx<'a> {
pub feature: &'a FeatureFile,
pub packs: &'a PackSet,
pub kind_to_engine: &'a BTreeMap<String, String>,
pub env: &'a BTreeMap<String, String>,
pub config_vars: &'a BTreeMap<String, String>,
pub run_id: &'a str,
pub world: &'a World,
pub mode: ResolveMode,
}Expand description
Everything lowering needs, all injected (core purity).
Fields§
§feature: &'a FeatureFileThe feature the scenario came from (source for diags).
packs: &'a PackSetLoaded macros.
kind_to_engine: &'a BTreeMap<String, String>Step kind prefix → engine id (from the CLI’s registry assembly).
env: &'a BTreeMap<String, String>Injected environment snapshot.
config_vars: &'a BTreeMap<String, String>Injected proef.toml config scope (${url:key} / ${vars:key}), keyed
"<namespace>:<key>" — the active [env.<name>] already deep-merged in.
run_id: &'a strInjected run identifier.
world: &'a WorldWorld (globals read at lower time).
mode: ResolveModeStrict (execution) or dry-run resolution.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for LowerCtx<'a>
impl<'a> RefUnwindSafe for LowerCtx<'a>
impl<'a> Send for LowerCtx<'a>
impl<'a> Sync for LowerCtx<'a>
impl<'a> Unpin for LowerCtx<'a>
impl<'a> UnsafeUnpin for LowerCtx<'a>
impl<'a> UnwindSafe for LowerCtx<'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