pub fn match_component_moniker_against_selectors<'a, T, S>(
    moniker: &[T],
    selectors: &'a [S]
) -> Result<Vec<&'a Selector>, Error>
where T: AsRef<str> + ToString, S: Borrow<Selector>,
Expand description

Evaluates a component moniker against a list of selectors, returning all of the selectors which are matches for that moniker.

Requires: hierarchy_path is not empty. selectors contains valid Selectors.