usesuper::*;/// # Ordered List
/// ```note
/// 1. part1
/// 2. part2
/// part2
/// 3. part3
////// 4. part4
/// ```
#[derive(Clone, Debug, Eq, PartialEq, Hash)]pubstructOrderedList{/// First element number of the list
pubfirst_order:usize,
/// Children nodes of the list
pubchildren:Vec<ListItem>,
}