Struct moore_svlog::ast::InstData [−][src]
pub struct InstData<'a> {
pub target: Spanned<Name>,
pub params: Vec<ParamAssignment<'a>, Global>,
pub names: Vec<Node<'a, InstNameData<'a>>, Global>,
}
Expand description
An instantiation of a module.
For example foo u0(), u1();
.
Fields
target: Spanned<Name>
The name of the module to instantiate.
params: Vec<ParamAssignment<'a>, Global>
The parameters in the module to be assigned.
names: Vec<Node<'a, InstNameData<'a>>, Global>
The names and ports of the module instantiations.
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.
Auto Trait Implementations
impl<'a> !RefUnwindSafe for InstData<'a>
impl<'a> !UnwindSafe for InstData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more