#[repr(C, packed(1))]pub struct ARAContentTempoEntry {
pub timePosition: ARATimePosition,
pub quarterPosition: ARAQuarterPosition,
}Expand description
! Content reader event class: tempo map provided by kARAContentTypeTempoEntries. ! Event sort order is by timePosition. ! As with all content readers, a pointer to this struct retrieved via getContentReaderDataForEvent() ! is still owned by the callee and must remain valid until either getContentReaderDataForEvent() ! is called again or the reader is destroyed via destroyContentReader().
Fields§
§timePosition: ARATimePosition! Time in seconds relative to the start of the song or the audio source/modification.
quarterPosition: ARAQuarterPosition! Corresponding time in quarter notes.
Trait Implementations§
Source§impl Clone for ARAContentTempoEntry
impl Clone for ARAContentTempoEntry
Source§fn clone(&self) -> ARAContentTempoEntry
fn clone(&self) -> ARAContentTempoEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ARAContentTempoEntry
impl Debug for ARAContentTempoEntry
impl Copy for ARAContentTempoEntry
Auto Trait Implementations§
impl Freeze for ARAContentTempoEntry
impl RefUnwindSafe for ARAContentTempoEntry
impl Send for ARAContentTempoEntry
impl Sync for ARAContentTempoEntry
impl Unpin for ARAContentTempoEntry
impl UnsafeUnpin for ARAContentTempoEntry
impl UnwindSafe for ARAContentTempoEntry
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