Struct moore_svlog::hir::Interface [−][src]
pub struct Interface<'a> {
pub ast: &'a Interface<'a>,
pub ports: &'a PortList<'a>,
pub block: ModuleBlock,
}
Expand description
An interface.
Fields
ast: &'a Interface<'a>
The AST node.
ports: &'a PortList<'a>
The ports of the interface.
block: ModuleBlock
The contents of the interface.
Methods from Deref<Target = &'a Interface<'a>>
Check if this is an implicit type.
Check if this is an implicit type.
Trait Implementations
Obtain a span which can be used to refer to this node in error messages
presented to humans. This will generally be the name for things like
entities, processes, and variables. Defaults to return whatever span()
returns. Read more