pub trait ISelector {
    // Required method
    fn selecting_nodes(&self, store: &impl NodeStore) -> GenApiResult<&[NodeId]>;
}

Required Methods§

source

fn selecting_nodes(&self, store: &impl NodeStore) -> GenApiResult<&[NodeId]>

Return nodes which refer to the current node as a selector.

Implementors§