pub struct TranscriptionWord {
pub word: String,
pub start: f64,
pub end: f64,
}
Fields§
§word: String
The text content of the word.
start: f64
Start time of the word in seconds.
end: f64
End time of the word in seconds.
Implementations§
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
Source§impl PartialEq for TranscriptionWord
impl PartialEq for TranscriptionWord
Source§impl Serialize for TranscriptionWord
impl Serialize for TranscriptionWord
impl StructuralPartialEq for TranscriptionWord
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