pub enum ConcurrentAssertionStatement {
AssertPropertyStatement(Box<AssertPropertyStatement, Global>),
AssumePropertyStatement(Box<AssumePropertyStatement, Global>),
CoverPropertyStatement(Box<CoverPropertyStatement, Global>),
CoverSequenceStatement(Box<CoverSequenceStatement, Global>),
RestrictPropertyStatement(Box<RestrictPropertyStatement, Global>),
}
Variants§
AssertPropertyStatement(Box<AssertPropertyStatement, Global>)
AssumePropertyStatement(Box<AssumePropertyStatement, Global>)
CoverPropertyStatement(Box<CoverPropertyStatement, Global>)
CoverSequenceStatement(Box<CoverSequenceStatement, Global>)
RestrictPropertyStatement(Box<RestrictPropertyStatement, Global>)
Trait Implementations§
source§impl Clone for ConcurrentAssertionStatement
impl Clone for ConcurrentAssertionStatement
source§fn clone(&self) -> ConcurrentAssertionStatement
fn clone(&self) -> ConcurrentAssertionStatement
Returns a copy 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 Debug for ConcurrentAssertionStatement
impl Debug for ConcurrentAssertionStatement
source§impl<'a> From<&'a ConcurrentAssertionStatement> for RefNode<'a>
impl<'a> From<&'a ConcurrentAssertionStatement> for RefNode<'a>
source§fn from(x: &'a ConcurrentAssertionStatement) -> RefNode<'a>
fn from(x: &'a ConcurrentAssertionStatement) -> RefNode<'a>
Converts to this type from the input type.
source§impl<'a> From<&'a ConcurrentAssertionStatement> for RefNodes<'a>
impl<'a> From<&'a ConcurrentAssertionStatement> for RefNodes<'a>
source§fn from(x: &'a ConcurrentAssertionStatement) -> RefNodes<'a>
fn from(x: &'a ConcurrentAssertionStatement) -> RefNodes<'a>
Converts to this type from the input type.
source§impl From<ConcurrentAssertionStatement> for AnyNode
impl From<ConcurrentAssertionStatement> for AnyNode
source§fn from(x: ConcurrentAssertionStatement) -> AnyNode
fn from(x: ConcurrentAssertionStatement) -> AnyNode
Converts to this type from the input type.
source§impl<'a> IntoIterator for &'a ConcurrentAssertionStatement
impl<'a> IntoIterator for &'a ConcurrentAssertionStatement
source§impl PartialEq<ConcurrentAssertionStatement> for ConcurrentAssertionStatement
impl PartialEq<ConcurrentAssertionStatement> for ConcurrentAssertionStatement
source§fn eq(&self, other: &ConcurrentAssertionStatement) -> bool
fn eq(&self, other: &ConcurrentAssertionStatement) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.