Enum moore_svlog::ast::UnpackedDimData [−][src]
pub enum UnpackedDimData<'a> {
Range(Node<'a, ExprData<'a>>, Node<'a, ExprData<'a>>),
Expr(Node<'a, ExprData<'a>>),
}
Expand description
An unpacked dimension.
From §A.2.5:
"[" constant_range "]"
"[" constant_expression "]"
Variants
Such as [41:0]
.
Such as [42]
.
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 UnpackedDimData<'a>
impl<'a> Send for UnpackedDimData<'a>
impl<'a> Sync for UnpackedDimData<'a>
impl<'a> Unpin for UnpackedDimData<'a>
impl<'a> !UnwindSafe for UnpackedDimData<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more