Struct moore_svlog::port_list::IntPortData [−][src]
pub struct IntPortData<'a> {
pub ty: &'a Type<'a>,
pub unpacked_dims: &'a [TypeDim<'a>],
pub matching: Option<(NodeId, ())>,
pub default: Option<NodeId>,
}
Expand description
Additional internal port details.
Fields
ty: &'a Type<'a>
Type of the port.
unpacked_dims: &'a [TypeDim<'a>]
Unpacked dimensions of the port.
matching: Option<(NodeId, ())>
Optional redundant type (possible in non-ANSI ports), which must be
checked against ty
.
default: Option<NodeId>
Optional default value assigned to the port if left unconnected.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.