pub struct SMPTEOffsetEvent {
pub hours: u8,
pub minutes: u8,
pub seconds: u8,
pub frames: u8,
pub fractional_frames: u8,
}
Fields§
§hours: u8
§minutes: u8
§seconds: u8
§frames: u8
§fractional_frames: u8
Implementations§
Trait Implementations§
Source§impl Clone for SMPTEOffsetEvent
impl Clone for SMPTEOffsetEvent
Source§fn clone(&self) -> SMPTEOffsetEvent
fn clone(&self) -> SMPTEOffsetEvent
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 SMPTEOffsetEvent
impl Debug for SMPTEOffsetEvent
Source§impl MIDIEvent for SMPTEOffsetEvent
impl MIDIEvent for SMPTEOffsetEvent
Source§impl PartialEq for SMPTEOffsetEvent
impl PartialEq for SMPTEOffsetEvent
Source§impl SerializeEvent for SMPTEOffsetEvent
impl SerializeEvent for SMPTEOffsetEvent
fn serialize_event<T: Write>( &self, buf: &mut T, ) -> Result<usize, MIDIWriteError>
impl StructuralPartialEq for SMPTEOffsetEvent
Auto Trait Implementations§
impl Freeze for SMPTEOffsetEvent
impl RefUnwindSafe for SMPTEOffsetEvent
impl Send for SMPTEOffsetEvent
impl Sync for SMPTEOffsetEvent
impl Unpin for SMPTEOffsetEvent
impl UnwindSafe for SMPTEOffsetEvent
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