1/// Parameter for the script element. 2pub enum Script<'a> { 3 /// Represents a script pulled by the src attribute. 4 Src(&'a str), 5 /// Represents an inline script. 6 Inline(&'a str), 7}