Struct vhdl_lang::ast::ConcurrentAssertStatement
source · pub struct ConcurrentAssertStatement {
pub postponed: bool,
pub statement: AssertStatement,
}Expand description
LRM 11.5 Concurrent assertion statements
Fields§
§postponed: bool§statement: AssertStatementTrait Implementations§
source§impl ASTNode for ConcurrentAssertStatement
impl ASTNode for ConcurrentAssertStatement
source§fn visit(
&self,
visitor: &mut dyn Visitor,
ctx: &dyn TokenAccess
) -> VisitorResult
fn visit( &self, visitor: &mut dyn Visitor, ctx: &dyn TokenAccess ) -> VisitorResult
Called when traversing the AST.
Each node must call the respective method in the
Visitor class.
If the node doesn’t have a representation
(for example, for utility types such as Box or Vec),
simply return Continue.source§impl Clone for ConcurrentAssertStatement
impl Clone for ConcurrentAssertStatement
source§fn clone(&self) -> ConcurrentAssertStatement
fn clone(&self) -> ConcurrentAssertStatement
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 ConcurrentAssertStatement
impl Debug for ConcurrentAssertStatement
source§impl PartialEq for ConcurrentAssertStatement
impl PartialEq for ConcurrentAssertStatement
source§fn eq(&self, other: &ConcurrentAssertStatement) -> bool
fn eq(&self, other: &ConcurrentAssertStatement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ConcurrentAssertStatement
Auto Trait Implementations§
impl !RefUnwindSafe for ConcurrentAssertStatement
impl Send for ConcurrentAssertStatement
impl Sync for ConcurrentAssertStatement
impl Unpin for ConcurrentAssertStatement
impl !UnwindSafe for ConcurrentAssertStatement
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