[][src]Type Definition lv2rs_atom::sequence::Sequence

type Sequence = ArrayAtomBody<SequenceHeader, u8>;

Atom tuple with time stamps for every contained atom.

Sequences are used to express real-time events that should be handled with frame- or beat-perfect timing, for example midi events.

See the module documentation for more information.

Methods

impl Sequence[src]

pub fn time_unit(&self, urids: &mut CachedMap) -> TimeUnit[src]

pub fn iter<'a>(
    &'a self,
    urids: &mut CachedMap
) -> impl Iterator<Item = (TimeStamp, &'a Atom)>
[src]

Trait Implementations

impl AtomBody for Sequence[src]

type InitializationParameter = TimeUnit

The type of the parameter for initialize_body Read more