Struct moore_svlog::ast::InstNameData [−][src]
pub struct InstNameData<'a> {
pub name: Spanned<Name>,
pub dims: Vec<TypeDim<'a>, Global>,
pub conns: Vec<Node<'a, PortConnData<'a>>, Global>,
}
Expand description
A single module instance.
For example the u0()
in foo u0(), u1();
.
Fields
name: Spanned<Name>
The name of the instance.
dims: Vec<TypeDim<'a>, Global>
The unpacked dimensions.
conns: Vec<Node<'a, PortConnData<'a>>, Global>
The port connections.
Trait Implementations
Get this node’s name, or None
if it does not have one.
Describe this node for diagnostics in indefinite form, e.g. “entity”. Read more
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Describe this node for diagnostics in indefinite form, e.g. “entity”.
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Describe this node for diagnostics in indefinite form, e.g. “entity”.
Describe this node for diagnostics in definite form, e.g. “entity ‘top’”. Read more
Apply a function to each child node.
Apply a function to this node.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for InstNameData<'a>
impl<'a> Send for InstNameData<'a>
impl<'a> Sync for InstNameData<'a>
impl<'a> Unpin for InstNameData<'a>
impl<'a> !UnwindSafe for InstNameData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more