pub struct TranscriptWord {
pub word: String,
pub start: f32,
pub end: f32,
}Expand description
A word with timing information.
Fields§
§word: StringThe word.
start: f32Start time in seconds.
end: f32End time in seconds.
Trait Implementations§
Source§impl Clone for TranscriptWord
impl Clone for TranscriptWord
Source§fn clone(&self) -> TranscriptWord
fn clone(&self) -> TranscriptWord
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 moreAuto Trait Implementations§
impl Freeze for TranscriptWord
impl RefUnwindSafe for TranscriptWord
impl Send for TranscriptWord
impl Sync for TranscriptWord
impl Unpin for TranscriptWord
impl UnwindSafe for TranscriptWord
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