pub enum ConcurrentAssertionStatement<'a> {
AssertProp(Box<AssertPropertyStatement<'a>>),
AssumeProp(Box<AssumePropertyStatement<'a>>),
CoverProp(Box<CoverPropertyStatement<'a>>),
CoverSeq(Box<CoverSequenceStatement<'a>>),
RestrictProp(Box<RestrictPropertyStatement<'a>>),
}Variants§
AssertProp(Box<AssertPropertyStatement<'a>>)
AssumeProp(Box<AssumePropertyStatement<'a>>)
CoverProp(Box<CoverPropertyStatement<'a>>)
CoverSeq(Box<CoverSequenceStatement<'a>>)
RestrictProp(Box<RestrictPropertyStatement<'a>>)
Implementations§
Source§impl<'a: 'b, 'b> ConcurrentAssertionStatement<'a>
impl<'a: 'b, 'b> ConcurrentAssertionStatement<'a>
Sourcepub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
pub fn iter(&'b self) -> NodeIter<'a, 'b> ⓘ
Iterate across the ConcurrentAssertionStatement and its children
Trait Implementations§
Source§impl<'a> Clone for ConcurrentAssertionStatement<'a>
impl<'a> Clone for ConcurrentAssertionStatement<'a>
Source§fn clone(&self) -> ConcurrentAssertionStatement<'a>
fn clone(&self) -> ConcurrentAssertionStatement<'a>
Returns a duplicate of the value. Read more
1.0.0 · 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 ConcurrentAssertionStatement<'a>
impl<'a> Debug for ConcurrentAssertionStatement<'a>
Source§impl<'a: 'b, 'b> From<&'b ConcurrentAssertionStatement<'a>> for Node<'a, 'b>
impl<'a: 'b, 'b> From<&'b ConcurrentAssertionStatement<'a>> for Node<'a, 'b>
Source§fn from(value: &'b ConcurrentAssertionStatement<'a>) -> Self
fn from(value: &'b ConcurrentAssertionStatement<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a: 'b, 'b> IntoIterator for &'b ConcurrentAssertionStatement<'a>
impl<'a: 'b, 'b> IntoIterator for &'b ConcurrentAssertionStatement<'a>
Source§impl<'a: 'b, 'b> Nodes<'a, 'b> for ConcurrentAssertionStatement<'a>
impl<'a: 'b, 'b> Nodes<'a, 'b> for ConcurrentAssertionStatement<'a>
Source§impl<'a> PartialEq for ConcurrentAssertionStatement<'a>
impl<'a> PartialEq for ConcurrentAssertionStatement<'a>
Source§fn eq(&self, other: &ConcurrentAssertionStatement<'a>) -> bool
fn eq(&self, other: &ConcurrentAssertionStatement<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for ConcurrentAssertionStatement<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConcurrentAssertionStatement<'a>
impl<'a> RefUnwindSafe for ConcurrentAssertionStatement<'a>
impl<'a> Send for ConcurrentAssertionStatement<'a>
impl<'a> Sync for ConcurrentAssertionStatement<'a>
impl<'a> Unpin for ConcurrentAssertionStatement<'a>
impl<'a> UnsafeUnpin for ConcurrentAssertionStatement<'a>
impl<'a> UnwindSafe for ConcurrentAssertionStatement<'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