Trait ToSelectorArguments

Source
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§

Source

fn to_selector_arguments(self) -> Box<dyn Iterator<Item = SelectorArgument>>

Converts this to selector arguments.

Implementations on Foreign Types§

Source§

impl ToSelectorArguments for &str

Source§

impl ToSelectorArguments for Selector

Source§

impl ToSelectorArguments for String

Implementors§