Skip to main content

GraphObjectId

Type Alias GraphObjectId 

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

An unique ID for a graph object (AudioContext, AudioNode, AudioParam) in Web Audio API

Aliased Type§

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

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.