pub struct ChapterEntry {
pub start_time: u64,
pub title: String,
}Expand description
Chapter entry containing start time and title
Fields§
§start_time: u64Start time of the chapter in 100-nanosecond units
title: StringChapter title as UTF-8 string
Implementations§
Source§impl ChapterEntry
impl ChapterEntry
pub fn builder() -> ChapterEntryBuilder
Trait Implementations§
Source§impl Clone for ChapterEntry
impl Clone for ChapterEntry
Source§fn clone(&self) -> ChapterEntry
fn clone(&self) -> ChapterEntry
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 ChapterEntry
impl Debug for ChapterEntry
Source§impl FromIterator<ChapterEntry> for ChapterEntries
impl FromIterator<ChapterEntry> for ChapterEntries
Source§fn from_iter<T: IntoIterator<Item = ChapterEntry>>(iter: T) -> Self
fn from_iter<T: IntoIterator<Item = ChapterEntry>>(iter: T) -> Self
Creates a value from an iterator. Read more
Source§impl PartialEq for ChapterEntry
impl PartialEq for ChapterEntry
impl Eq for ChapterEntry
impl StructuralPartialEq for ChapterEntry
Auto Trait Implementations§
impl Freeze for ChapterEntry
impl RefUnwindSafe for ChapterEntry
impl Send for ChapterEntry
impl Sync for ChapterEntry
impl Unpin for ChapterEntry
impl UnsafeUnpin for ChapterEntry
impl UnwindSafe for ChapterEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more