pub enum ConcurrentAssertion<'a> {
AssertProperty(PropSpec, AssertionActionBlock<'a>),
AssumeProperty(PropSpec, AssertionActionBlock<'a>),
CoverProperty(PropSpec, Stmt<'a>),
CoverSequence,
ExpectProperty(PropSpec, AssertionActionBlock<'a>),
RestrictProperty(PropSpec),
}Variants§
AssertProperty(PropSpec, AssertionActionBlock<'a>)
AssumeProperty(PropSpec, AssertionActionBlock<'a>)
CoverProperty(PropSpec, Stmt<'a>)
CoverSequence
ExpectProperty(PropSpec, AssertionActionBlock<'a>)
RestrictProperty(PropSpec)
Trait Implementations§
Source§impl<'a> AcceptVisitor<'a> for ConcurrentAssertion<'a>
impl<'a> AcceptVisitor<'a> for ConcurrentAssertion<'a>
Source§impl<'a> Clone for ConcurrentAssertion<'a>
impl<'a> Clone for ConcurrentAssertion<'a>
Source§fn clone(&self) -> ConcurrentAssertion<'a>
fn clone(&self) -> ConcurrentAssertion<'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 ConcurrentAssertion<'a>
impl<'a> Debug for ConcurrentAssertion<'a>
Source§impl<'a> ForEachChild<'a> for ConcurrentAssertion<'a>
impl<'a> ForEachChild<'a> for ConcurrentAssertion<'a>
Source§fn for_each_child(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
fn for_each_child(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
Apply a function to each child node.
Source§impl<'a> ForEachNode<'a> for ConcurrentAssertion<'a>
impl<'a> ForEachNode<'a> for ConcurrentAssertion<'a>
Source§fn for_each_node(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
fn for_each_node(&'a self, each: &mut dyn FnMut(&'a dyn AnyNode<'a>))
Apply a function to this node.
Source§impl<'a> PartialEq for ConcurrentAssertion<'a>
impl<'a> PartialEq for ConcurrentAssertion<'a>
Source§impl<'a> WalkVisitor<'a> for ConcurrentAssertion<'a>
impl<'a> WalkVisitor<'a> for ConcurrentAssertion<'a>
impl<'a> Eq for ConcurrentAssertion<'a>
impl<'a> StructuralPartialEq for ConcurrentAssertion<'a>
Auto Trait Implementations§
impl<'a> !Freeze for ConcurrentAssertion<'a>
impl<'a> !RefUnwindSafe for ConcurrentAssertion<'a>
impl<'a> Send for ConcurrentAssertion<'a>
impl<'a> Sync for ConcurrentAssertion<'a>
impl<'a> Unpin for ConcurrentAssertion<'a>
impl<'a> !UnwindSafe for ConcurrentAssertion<'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