pub trait Selection: Sync {
    // Required method
    fn get_selected_fields(&self) -> Vec<String>;
}

Required Methods§

Implementors§