pub struct Time {
pub hours: u64,
pub minutes: u64,
pub seconds: u64,
pub milliseconds: u64,
}
Expand description
Describes the time when subtitle should appear or disappear
Fields§
§hours: u64
Number of hours
minutes: u64
Number of minutes
seconds: u64
Number of seconds
milliseconds: u64
Number of milliseconds
Implementations§
Trait Implementations§
impl Copy for Time
impl StructuralPartialEq for Time
Auto Trait Implementations§
impl Freeze for Time
impl RefUnwindSafe for Time
impl Send for Time
impl Sync for Time
impl Unpin for Time
impl UnwindSafe for Time
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