pub enum AssertionItem<'a> {
Concurrent(Box<ConcurrentAssertionItem<'a>>),
DeferredImmediate(Box<DeferredImmediateAssertionItem<'a>>),
}Variants§
Concurrent(Box<ConcurrentAssertionItem<'a>>)
DeferredImmediate(Box<DeferredImmediateAssertionItem<'a>>)
Implementations§
Source§impl<'a: 'b, 'b> AssertionItem<'a>
impl<'a: 'b, 'b> AssertionItem<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the AssertionItem and its children
Trait Implementations§
Source§impl<'a> Clone for AssertionItem<'a>
impl<'a> Clone for AssertionItem<'a>
Source§fn clone(&self) -> AssertionItem<'a>
fn clone(&self) -> AssertionItem<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for AssertionItem<'a>
impl<'a> Debug for AssertionItem<'a>
Source§impl<'a: 'b, 'b> From<&'b AssertionItem<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b AssertionItem<'a>> for Node<'a, 'b>
Source§fn from(value: &'b AssertionItem<'a>) -> Self
fn from(value: &'b AssertionItem<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b AssertionItem<'a>
impl<'a: 'b, 'b> IntoIterator for &'b AssertionItem<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for AssertionItem<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for AssertionItem<'a>
Source§impl<'a> PartialEq for AssertionItem<'a>
impl<'a> PartialEq for AssertionItem<'a>
impl<'a> StructuralPartialEq for AssertionItem<'a>
Auto Trait Implementations§
impl<'a> Freeze for AssertionItem<'a>
impl<'a> RefUnwindSafe for AssertionItem<'a>
impl<'a> Send for AssertionItem<'a>
impl<'a> Sync for AssertionItem<'a>
impl<'a> Unpin for AssertionItem<'a>
impl<'a> UnsafeUnpin for AssertionItem<'a>
impl<'a> UnwindSafe for AssertionItem<'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