pub struct HierarchicalOutput<'a> { /* private fields */ }Expand description
Hierarchical output format providing a tree structure of evaluation results.
This format represents the evaluation as a nested tree that mirrors the logical structure of the schema. Each node contains validation results and child nodes representing nested sub-schema evaluations.
See Evaluation::hierarchical for an example JSON payload produced by this type.
Trait Implementations§
Source§impl<'a> Debug for HierarchicalOutput<'a>
impl<'a> Debug for HierarchicalOutput<'a>
Auto Trait Implementations§
impl<'a> Freeze for HierarchicalOutput<'a>
impl<'a> RefUnwindSafe for HierarchicalOutput<'a>
impl<'a> Send for HierarchicalOutput<'a>
impl<'a> Sync for HierarchicalOutput<'a>
impl<'a> Unpin for HierarchicalOutput<'a>
impl<'a> UnsafeUnpin for HierarchicalOutput<'a>
impl<'a> UnwindSafe for HierarchicalOutput<'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