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