Parse out the optional value objects.

This commit is contained in:
Tom Alexander
2023-10-11 18:29:07 -04:00
parent 6679db98a8
commit aeb2b6fe68
2 changed files with 30 additions and 2 deletions

View File

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