pub type AttributeValue = Option<String>;
A Verilog attribute can be assigned a string value: bitvec = (* dont_touch = true *)
pub enum AttributeValue { None, Some(String), }
No value.
Some value of type T.
T