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.