Add post_blank to the rust types.
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
use super::macros::intermediate;
|
||||
|
||||
use super::table_row::ITableRow;
|
||||
use crate::error::CustomError;
|
||||
use organic::types::StandardProperties;
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub(crate) struct ITable {
|
||||
pub(crate) children: Vec<ITableRow>,
|
||||
pub(crate) post_blank: organic::types::PostBlank,
|
||||
}
|
||||
|
||||
intermediate!(
|
||||
@@ -22,6 +23,9 @@ intermediate!(
|
||||
ret
|
||||
};
|
||||
|
||||
Ok(ITable { children })
|
||||
Ok(ITable {
|
||||
children,
|
||||
post_blank: original.get_post_blank(),
|
||||
})
|
||||
}
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user