#[repr(C)]pub struct CAMeterTrackEntry {
pub beats: CAClockBeats,
pub meterNumer: u16,
pub meterDenom: u16,
}
Expand description
A time signature change event.
The meter track is used for converting between beats as floating-point numbers (CAClockBeats) and their display representations (CABarBeatTime).
The beat time at which the time signature (meter) changes.
The numerator of the new time signature.
The denominator of the new time signature (1, 2, 4, 8, etc.).
See also Apple’s documentation
Fields§
§beats: CAClockBeats
§meterNumer: u16
§meterDenom: u16
Trait Implementations§
Source§impl Clone for CAMeterTrackEntry
impl Clone for CAMeterTrackEntry
Source§fn clone(&self) -> CAMeterTrackEntry
fn clone(&self) -> CAMeterTrackEntry
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 CAMeterTrackEntry
impl Debug for CAMeterTrackEntry
Source§impl Encode for CAMeterTrackEntry
impl Encode for CAMeterTrackEntry
Source§impl PartialEq for CAMeterTrackEntry
impl PartialEq for CAMeterTrackEntry
Source§impl RefEncode for CAMeterTrackEntry
impl RefEncode for CAMeterTrackEntry
Source§const ENCODING_REF: Encoding
const ENCODING_REF: Encoding
The Objective-C type-encoding for a reference of this type. Read more
impl Copy for CAMeterTrackEntry
impl StructuralPartialEq for CAMeterTrackEntry
Auto Trait Implementations§
impl Freeze for CAMeterTrackEntry
impl RefUnwindSafe for CAMeterTrackEntry
impl Send for CAMeterTrackEntry
impl Sync for CAMeterTrackEntry
impl Unpin for CAMeterTrackEntry
impl UnwindSafe for CAMeterTrackEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> EncodeArgument for Twhere
T: Encode,
impl<T> EncodeArgument for Twhere
T: Encode,
Source§const ENCODING_ARGUMENT: Encoding = T::ENCODING
const ENCODING_ARGUMENT: Encoding = T::ENCODING
The Objective-C type-encoding for this type.
Source§impl<T> EncodeReturn for Twhere
T: Encode,
impl<T> EncodeReturn for Twhere
T: Encode,
Source§const ENCODING_RETURN: Encoding = T::ENCODING
const ENCODING_RETURN: Encoding = T::ENCODING
The Objective-C type-encoding for this type.