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