Skip to main content

AttributeValue

Type Alias AttributeValue 

Source
pub type AttributeValue = Option<Parameter>;
Expand description

A Verilog attribute can be assigned a string value: bitvec = (* dont_touch = true *)

Aliased Type§

pub enum AttributeValue {
    None,
    Some(Parameter),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Parameter)

Some value of type T.