pub trait ToSelectorArguments {
// Required method
fn to_selector_arguments(self) -> Box<dyn Iterator<Item = SelectorArgument>>;
}Expand description
Trait used for things that can be converted to selector arguments.
Required Methods§
Sourcefn to_selector_arguments(self) -> Box<dyn Iterator<Item = SelectorArgument>>
fn to_selector_arguments(self) -> Box<dyn Iterator<Item = SelectorArgument>>
Converts this to selector arguments.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".