pub struct SMPTEOffset {
pub fps: Fps,
pub hour: u8,
pub minute: u8,
pub second: u8,
pub no_frames: u8,
pub no_fractional_frames: u8,
}
Expand description
I don’t understand this, but I should be decoding it correctly for those that do
Fields§
§fps: Fps
§hour: u8
§minute: u8
§second: u8
§no_frames: u8
§no_fractional_frames: u8
Trait Implementations§
Source§impl Clone for SMPTEOffset
impl Clone for SMPTEOffset
Source§fn clone(&self) -> SMPTEOffset
fn clone(&self) -> SMPTEOffset
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 SMPTEOffset
impl Debug for SMPTEOffset
Source§impl PartialEq for SMPTEOffset
impl PartialEq for SMPTEOffset
impl StructuralPartialEq for SMPTEOffset
Auto Trait Implementations§
impl Freeze for SMPTEOffset
impl RefUnwindSafe for SMPTEOffset
impl Send for SMPTEOffset
impl Sync for SMPTEOffset
impl Unpin for SMPTEOffset
impl UnwindSafe for SMPTEOffset
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