[][src]Struct moore_vhdl::hir::SigAssignStmt

pub struct SigAssignStmt {
    pub parent: ScopeRef,
    pub span: Span,
    pub label: Option<Spanned<Name>>,
    pub target: SigAssignTarget,
    pub target_span: Span,
    pub kind: SigAssignKind,
    pub kind_span: Span,
}

A sequential signal assignment.

See IEEE 1076-2008 section 10.5.

Fields

parent: ScopeRef

The scope within which the statement has been made.

span: Span

The location of the entire statement in the source file.

label: Option<Spanned<Name>>

The optional statement label.

target: SigAssignTarget

The target of the assignment.

target_span: Span

The location of the right hand side in the source file.

kind: SigAssignKind

The kind of the assignment.

kind_span: Span

The location of the right hand side in the source file.

Trait Implementations

impl<'a> Alloc<'a, 'a, SigAssignStmt> for Arenas[src]

impl Debug for SigAssignStmt[src]

impl<'lazy, 'sb, 'ast, 'ctx> NodeMaker<SigAssignStmtRef, &'ctx SigAssignStmt> for ScoreContext<'lazy, 'sb, 'ast, 'ctx>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.