Struct moore_svlog::ast::NetDeclData [−][src]
pub struct NetDeclData<'a> {
pub net_type: NetType,
pub strength: Option<NetStrength>,
pub kind: NetKind,
pub ty: Node<'a, TypeData<'a>>,
pub delay: Option<DelayControl<'a>>,
pub names: Vec<Node<'a, VarDeclNameData<'a>>, Global>,
}
Expand description
A net declaration.
For example wire x, y, z
.
Fields
net_type: NetType
strength: Option<NetStrength>
kind: NetKind
ty: Node<'a, TypeData<'a>>
delay: Option<DelayControl<'a>>
names: Vec<Node<'a, VarDeclNameData<'a>>, Global>
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 NetDeclData<'a>
impl<'a> Send for NetDeclData<'a>
impl<'a> Sync for NetDeclData<'a>
impl<'a> Unpin for NetDeclData<'a>
impl<'a> !UnwindSafe for NetDeclData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more