pub enum ListSelector {
ListName(String),
ListFile(String),
DefaultList,
}
Expand description
A selector for the allowed libfunc list.
Variants§
ListName(String)
A list with one of the predefined names.
ListFile(String)
A list to be read from a file.
DefaultList
Implementations§
Trait Implementations§
source§impl Default for ListSelector
impl Default for ListSelector
source§fn default() -> ListSelector
fn default() -> ListSelector
Returns the “default value” for a type. Read more