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§

source

fn selector(&self) -> SelectorIter<'_, SelectorImpl>

Gets the selector we should use to index in the selector map.

Implementors§