#[repr(C)]pub struct LV2_Atom_Sequence_Body {
pub unit: u32,
pub pad: u32,
}Expand description
The body of an atom:Sequence (a sequence of events).
The unit field is either a URID that described an appropriate time stamp type, or may be 0 where a default stamp type is known. For LV2_Descriptor::run(), the default stamp type is audio frames.
The contents of a sequence is a series of LV2_Atom_Event, each aligned to 64-bits, for example:
| Event 1 (size 6) | Event 2 | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |FRAMES |SUBFRMS|TYPE |SIZE |DATADATADATAPAD|FRAMES |SUBFRMS|...
Fields§
§unit: u32< URID of unit of event time stamps.
pad: u32< Currently unused.
Trait Implementations§
Source§impl Clone for LV2_Atom_Sequence_Body
impl Clone for LV2_Atom_Sequence_Body
Source§fn clone(&self) -> LV2_Atom_Sequence_Body
fn clone(&self) -> LV2_Atom_Sequence_Body
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LV2_Atom_Sequence_Body
impl Debug for LV2_Atom_Sequence_Body
impl Copy for LV2_Atom_Sequence_Body
Auto Trait Implementations§
impl Freeze for LV2_Atom_Sequence_Body
impl RefUnwindSafe for LV2_Atom_Sequence_Body
impl Send for LV2_Atom_Sequence_Body
impl Sync for LV2_Atom_Sequence_Body
impl Unpin for LV2_Atom_Sequence_Body
impl UnwindSafe for LV2_Atom_Sequence_Body
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more