pub struct TranscriptionWord {
pub end: f32,
pub start: f32,
pub word: String,
}
Fields§
§end: f32
End time of the word in seconds.
start: f32
Start time of the word in seconds.
word: String
The text content of the word.
Trait Implementations§
Source§impl Debug for TranscriptionWord
impl Debug for TranscriptionWord
Source§impl<'de> Deserialize<'de> for TranscriptionWord
impl<'de> Deserialize<'de> for TranscriptionWord
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TranscriptionWord
impl RefUnwindSafe for TranscriptionWord
impl Send for TranscriptionWord
impl Sync for TranscriptionWord
impl Unpin for TranscriptionWord
impl UnwindSafe for TranscriptionWord
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