pub type NodeType<'a> = Cow<'a, str>;
Enum of AudioNode types
pub enum NodeType<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.