pub enum SeekTableInterval {
Seconds(NonZero<u8>),
Frames(NonZero<usize>),
}Expand description
The interval of seek points to generate
Variants§
Seconds(NonZero<u8>)
Generate seekpoint every nth seconds
Frames(NonZero<usize>)
Generate seekpoint every nth frames
Trait Implementations§
Source§impl Clone for SeekTableInterval
impl Clone for SeekTableInterval
Source§fn clone(&self) -> SeekTableInterval
fn clone(&self) -> SeekTableInterval
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 SeekTableInterval
impl Debug for SeekTableInterval
Source§impl Default for SeekTableInterval
impl Default for SeekTableInterval
impl Copy for SeekTableInterval
Auto Trait Implementations§
impl Freeze for SeekTableInterval
impl RefUnwindSafe for SeekTableInterval
impl Send for SeekTableInterval
impl Sync for SeekTableInterval
impl Unpin for SeekTableInterval
impl UnwindSafe for SeekTableInterval
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