pub trait ParameterStrategy: Send + Sync {
// Required method
fn resolve(
&self,
value: &Value,
ctx: &ResolutionContext<'_>,
) -> Result<Value>;
}pub trait ParameterStrategy: Send + Sync {
// Required method
fn resolve(
&self,
value: &Value,
ctx: &ResolutionContext<'_>,
) -> Result<Value>;
}