pub trait GcSelectorExt: 'static {
    // Required methods
    fn selected_features(&self) -> Vec<GcFeatureNode>;
    fn is_selector(&self) -> bool;
}
Expand description

Required Methods§

source

fn selected_features(&self) -> Vec<GcFeatureNode>

Returns

a list of selected GcFeatureNode

source

fn is_selector(&self) -> bool

Returns

true if this node is a selector, i.e. it has pSelected childs.

Implementors§