pub struct TranscriptWord {
pub word: String,
pub start_ms: f64,
pub end_ms: f64,
pub confidence: Option<f64>,
}Fields§
§word: String§start_ms: f64§end_ms: f64§confidence: Option<f64>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 (const: unstable) · 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 TranscriptWord
impl Debug for TranscriptWord
Source§impl PartialEq for TranscriptWord
impl PartialEq for TranscriptWord
impl StructuralPartialEq for TranscriptWord
Auto Trait Implementations§
impl Freeze for TranscriptWord
impl RefUnwindSafe for TranscriptWord
impl Send for TranscriptWord
impl Sync for TranscriptWord
impl Unpin for TranscriptWord
impl UnsafeUnpin 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