pub trait ParamInfoHandler {
// Required methods
fn num_params(&self) -> usize;
fn param_info(&self, index: usize) -> &dyn ParamInfo;
}Expand description
Handle the info for a collection of parameters. Allows for nested parameters.
pub trait ParamInfoHandler {
// Required methods
fn num_params(&self) -> usize;
fn param_info(&self, index: usize) -> &dyn ParamInfo;
}Handle the info for a collection of parameters. Allows for nested parameters.