pub enum DurationFormat {
Short,
Long,
LongWithSeconds,
}Expand description
Duration format variants
Variants§
Short
Short format: “3:45” or “1:02:30” for tracks
Long
Long format: “1h 23m” or “45m” for episodes
LongWithSeconds
Long format with seconds: “1h 23m” or “5m 30s” or “45s” for chapters
Auto Trait Implementations§
impl Freeze for DurationFormat
impl RefUnwindSafe for DurationFormat
impl Send for DurationFormat
impl Sync for DurationFormat
impl Unpin for DurationFormat
impl UnwindSafe for DurationFormat
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