1
2
3
4
5
use crate::executable::AbstractSelection;

pub trait SelectionSet: AsRef<[Self::Selection]> {
    type Selection: AbstractSelection;
}