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