pub struct ValidatedTree<'a> {
pub pruefidentifikator: &'a str,
pub ub_definitions: &'a HashMap<String, ConditionExpr>,
pub root_fields: Vec<AhbNode<'a>>,
pub groups: Vec<AhbGroupNode<'a>>,
}Expand description
AHB workflow merged with assembled EDIFACT data.
Fields§
§pruefidentifikator: &'a strThe Pruefidentifikator.
ub_definitions: &'a HashMap<String, ConditionExpr>UB definitions for condition expansion.
root_fields: Vec<AhbNode<'a>>Root-level fields (outside segment groups).
groups: Vec<AhbGroupNode<'a>>Top-level group instances.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ValidatedTree<'a>
impl<'a> RefUnwindSafe for ValidatedTree<'a>
impl<'a> Send for ValidatedTree<'a>
impl<'a> Sync for ValidatedTree<'a>
impl<'a> Unpin for ValidatedTree<'a>
impl<'a> UnsafeUnpin for ValidatedTree<'a>
impl<'a> UnwindSafe for ValidatedTree<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more