pub trait SelectInput {
type Model: Model;
// Required method
fn into_ir(self) -> Select;
}Expand description
A typed shape that lowers to a Select specification.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".