pub trait Params {
// Required method
fn into_params(self) -> ParamVec;
}Expand description
Trait for collections of parameters
This enables passing tuples, arrays, and slices as parameters.
Required Methods§
Sourcefn into_params(self) -> ParamVec
fn into_params(self) -> ParamVec
Convert into a ParamVec of Values. Uses SmallVec to avoid heap allocation for ≤4 parameters.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".