1
2
3
4
5
6
7
/// The difference between a comma-separated and a
/// whitespace-separated list.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum ListSeparator {
    Comma,
    Space,
}