pub struct TimecodeFrame {
pub hours: u8,
pub minutes: u8,
pub seconds: u8,
pub frames: u8,
pub frames_per_second: FramesPerSecond,
}
Fields§
§hours: u8
§minutes: u8
§seconds: u8
§frames: u8
§frames_per_second: FramesPerSecond
Implementations§
Source§impl TimecodeFrame
impl TimecodeFrame
Trait Implementations§
Source§impl Clone for TimecodeFrame
impl Clone for TimecodeFrame
Source§fn clone(&self) -> TimecodeFrame
fn clone(&self) -> TimecodeFrame
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TimecodeFrame
impl Debug for TimecodeFrame
Source§impl Display for TimecodeFrame
impl Display for TimecodeFrame
Source§impl PartialEq for TimecodeFrame
impl PartialEq for TimecodeFrame
impl Eq for TimecodeFrame
impl StructuralPartialEq for TimecodeFrame
Auto Trait Implementations§
impl Freeze for TimecodeFrame
impl RefUnwindSafe for TimecodeFrame
impl Send for TimecodeFrame
impl Sync for TimecodeFrame
impl Unpin for TimecodeFrame
impl UnwindSafe for TimecodeFrame
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