2023-10-29 21:29:16 +00:00
|
|
|
use super::macros::intermediate;
|
2023-10-27 18:43:06 +00:00
|
|
|
use super::registry::Registry;
|
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-10-29 22:35:42 +00:00
|
|
|
intermediate!(ISection, Section, original, registry, {
|
2023-10-29 21:29:16 +00:00
|
|
|
let children = {
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
for elem in original.children.iter() {
|
2023-10-30 01:19:30 +00:00
|
|
|
ret.push(IElement::new(registry.clone(), elem).await?);
|
2023-10-29 21:29:16 +00:00
|
|
|
}
|
|
|
|
ret
|
|
|
|
};
|
2023-10-27 19:32:24 +00:00
|
|
|
|
2023-10-29 21:29:16 +00:00
|
|
|
Ok(ISection { children })
|
|
|
|
});
|