Skip to main content

NodeType

Type Alias NodeType 

Source
pub type NodeType<'a> = Cow<'a, str>;
Expand description

Enum of AudioNode types

Aliased Type§

pub enum NodeType<'a> {
    Borrowed(&'a str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.