pub struct TranscriptionWord {
pub word: String,
pub start: f32,
pub end: f32,
}
Fields§
§word: String
The text content of the word.
start: f32
Start time of the word in seconds.
end: f32
End time of the word in seconds.
Trait Implementations§
Source§impl Clone for TranscriptionWord
impl Clone for TranscriptionWord
Source§fn clone(&self) -> TranscriptionWord
fn clone(&self) -> TranscriptionWord
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 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