pub struct TcResult {
pub timecode: Timecode,
pub wrapped: bool,
pub days_wrapped: u32,
}Expand description
The result of a timecode calculation.
Fields§
§timecode: TimecodeThe resulting timecode.
wrapped: boolWhether 24-hour wrap-around occurred.
days_wrapped: u32How many full 24-hour periods were crossed (useful for multi-day spans).
Implementations§
Trait Implementations§
impl Eq for TcResult
impl StructuralPartialEq for TcResult
Auto Trait Implementations§
impl Freeze for TcResult
impl RefUnwindSafe for TcResult
impl Send for TcResult
impl Sync for TcResult
impl Unpin for TcResult
impl UnsafeUnpin for TcResult
impl UnwindSafe for TcResult
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