Add post_blank to the rust types.

This commit is contained in:
Tom Alexander
2023-12-21 14:56:58 -05:00
parent 8b85c02ef1
commit 72952adb6b
108 changed files with 318 additions and 109 deletions

View File

@@ -1,12 +1,13 @@
use super::macros::intermediate;
use super::IPlainListItem;
use crate::error::CustomError;
use organic::types::StandardProperties;
#[derive(Debug, Clone)]
pub(crate) struct IPlainList {
pub(crate) list_type: organic::types::PlainListType,
pub(crate) children: Vec<IPlainListItem>,
pub(crate) post_blank: organic::types::PostBlank,
}
intermediate!(
@@ -26,6 +27,7 @@ intermediate!(
Ok(IPlainList {
list_type: original.list_type,
children,
post_blank: original.get_post_blank(),
})
}
);