pub struct WordTiming {
pub word: String,
pub start_ms: u64,
pub end_ms: u64,
pub confidence: f32,
}Expand description
Word-level timing information
Fields§
§word: StringThe word
start_ms: u64Start time in milliseconds
end_ms: u64End time in milliseconds
confidence: f32Confidence score
Trait Implementations§
Source§impl Clone for WordTiming
impl Clone for WordTiming
Source§fn clone(&self) -> WordTiming
fn clone(&self) -> WordTiming
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 WordTiming
impl Debug for WordTiming
Source§impl PartialEq for WordTiming
impl PartialEq for WordTiming
impl StructuralPartialEq for WordTiming
Auto Trait Implementations§
impl Freeze for WordTiming
impl RefUnwindSafe for WordTiming
impl Send for WordTiming
impl Sync for WordTiming
impl Unpin for WordTiming
impl UnsafeUnpin for WordTiming
impl UnwindSafe for WordTiming
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