[][src]Struct moore_vhdl::hir::IntfSignal

pub struct IntfSignal {
    pub name: Spanned<Name>,
    pub mode: IntfSignalMode,
    pub ty: SubtypeIndRef,
    pub bus: bool,
    pub init: Option<ExprRef>,
}

Fields

name: Spanned<Name>

The name of this signal.

mode: IntfSignalMode

The mode of this signal.

ty: SubtypeIndRef

The type of this signal.

bus: bool

Whether this signal was declared with the bus keyword.

init: Option<ExprRef>

The expression determining the initial value of this signals.

Trait Implementations

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

impl Debug for IntfSignal[src]

impl<'lazy, 'sb, 'ast, 'ctx> NodeMaker<IntfSignalRef, &'ctx IntfSignal> 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.