Parsing the affiliated keywords.

This commit is contained in:
Tom Alexander
2023-10-11 12:06:05 -04:00
parent a5129199c7
commit c4cc40f5e1
3 changed files with 92 additions and 37 deletions

View File

@@ -6,7 +6,7 @@ use super::Object;
pub enum AffiliatedKeywordValue<'s> {
SingleString(&'s str),
ListOfStrings(Vec<&'s str>),
ListOfObjects(Vec<Object<'s>>),
ListOfListsOfObjects(Vec<Vec<Object<'s>>>),
}
#[derive(Debug)]