1#[derive(Debug, Clone, PartialEq)] 2pub struct List { 3 pub ordered: bool, 4 pub items: Vec<String>, 5}