pub type SimpleList = List<()>;Expand description
Simple list without user data (backward compatible)
Aliased Type§
pub struct SimpleList {
pub kind: ListKind,
pub items: Vec<ListItem>,
pub user_data: (),
}Fields§
§kind: ListKindKind of list together with additional semantic data (start index or bullet marker).
items: Vec<ListItem>List items in source order.
user_data: ()User-defined data associated with this list