AttributeValue

Type Alias AttributeValue 

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

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

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.