pub struct AlignmentSegmentWord {
pub text: String,
pub start: f64,
pub end: f64,
}Expand description
A word-level alignment segment returned by the with-timestamps endpoint.
Fields§
§text: StringThe word text.
start: f64Start time in seconds.
end: f64End time in seconds.
Trait Implementations§
Source§impl Clone for AlignmentSegmentWord
impl Clone for AlignmentSegmentWord
Source§fn clone(&self) -> AlignmentSegmentWord
fn clone(&self) -> AlignmentSegmentWord
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 AlignmentSegmentWord
impl Debug for AlignmentSegmentWord
Source§impl<'de> Deserialize<'de> for AlignmentSegmentWord
impl<'de> Deserialize<'de> for AlignmentSegmentWord
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 AlignmentSegmentWord
impl PartialEq for AlignmentSegmentWord
Source§impl Serialize for AlignmentSegmentWord
impl Serialize for AlignmentSegmentWord
impl StructuralPartialEq for AlignmentSegmentWord
Auto Trait Implementations§
impl Freeze for AlignmentSegmentWord
impl RefUnwindSafe for AlignmentSegmentWord
impl Send for AlignmentSegmentWord
impl Sync for AlignmentSegmentWord
impl Unpin for AlignmentSegmentWord
impl UnsafeUnpin for AlignmentSegmentWord
impl UnwindSafe for AlignmentSegmentWord
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