pub struct ParameterContext {
pub parameters: HashMap<String, String>,
pub scope: Vec<String>,
}Expand description
Context for parameter resolution
Contains the parameter values and scope information needed to resolve ${parameter} references to their actual values.
Fields§
§parameters: HashMap<String, String>Current parameter values by name
scope: Vec<String>Parameter declaration scope (for nested parameter sets)
Implementations§
Trait Implementations§
Source§impl Debug for ParameterContext
impl Debug for ParameterContext
Source§impl Default for ParameterContext
impl Default for ParameterContext
Source§fn default() -> ParameterContext
fn default() -> ParameterContext
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParameterContext
impl RefUnwindSafe for ParameterContext
impl Send for ParameterContext
impl Sync for ParameterContext
impl Unpin for ParameterContext
impl UnsafeUnpin for ParameterContext
impl UnwindSafe for ParameterContext
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more