Skip to main content

ParamType

Type Alias ParamType 

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

Enum of AudioParam types

Aliased Type§

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

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.