pub trait ISelector {
// Required method
fn selecting_nodes(&self, store: &impl NodeStore) -> GenApiResult<&[NodeId]>;
}
Required Methods§
Sourcefn selecting_nodes(&self, store: &impl NodeStore) -> GenApiResult<&[NodeId]>
fn selecting_nodes(&self, store: &impl NodeStore) -> GenApiResult<&[NodeId]>
Return nodes which refer to the current node as a selector.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.