Trait style::selector_map::SelectorMapEntry
source · pub trait SelectorMapEntry: Sized + Clone {
// Required method
fn selector(&self) -> SelectorIter<'_, SelectorImpl>;
}
Expand description
A trait to abstract over a given selector map entry.
Required Methods§
sourcefn selector(&self) -> SelectorIter<'_, SelectorImpl>
fn selector(&self) -> SelectorIter<'_, SelectorImpl>
Gets the selector we should use to index in the selector map.
Object Safety§
This trait is not object safe.