2023-10-29 21:29:16 +00:00
|
|
|
use super::macros::intermediate;
|
2023-10-30 02:31:29 +00:00
|
|
|
|
2023-10-27 19:32:24 +00:00
|
|
|
use super::IElement;
|
2023-10-29 21:29:16 +00:00
|
|
|
use crate::error::CustomError;
|
2023-10-27 18:43:06 +00:00
|
|
|
|
2023-10-29 19:36:15 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2023-10-27 19:32:24 +00:00
|
|
|
pub(crate) struct ISection {
|
|
|
|
pub(crate) children: Vec<IElement>,
|
|
|
|
}
|
2023-10-24 04:36:08 +00:00
|
|
|
|
2023-12-19 22:09:11 +00:00
|
|
|
intermediate!(
|
|
|
|
ISection,
|
|
|
|
&'orig organic::types::Section<'parse>,
|
|
|
|
original,
|
|
|
|
registry,
|
|
|
|
{
|
|
|
|
let children = {
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
for elem in original.children.iter() {
|
|
|
|
ret.push(IElement::new(registry.clone(), elem).await?);
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
};
|
2023-10-27 19:32:24 +00:00
|
|
|
|
2023-12-19 22:09:11 +00:00
|
|
|
Ok(ISection { children })
|
|
|
|
}
|
|
|
|
);
|