pub struct TranscriptSegment {
pub text: String,
pub start: f64,
pub end: f64,
}Expand description
A timed segment within a transcript.
Fields§
§text: StringSegment text.
start: f64Start time in seconds.
end: f64End time in seconds.
Trait Implementations§
Source§impl Clone for TranscriptSegment
impl Clone for TranscriptSegment
Source§fn clone(&self) -> TranscriptSegment
fn clone(&self) -> TranscriptSegment
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 TranscriptSegment
impl Debug for TranscriptSegment
Source§impl<'de> Deserialize<'de> for TranscriptSegment
impl<'de> Deserialize<'de> for TranscriptSegment
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 TranscriptSegment
impl RefUnwindSafe for TranscriptSegment
impl Send for TranscriptSegment
impl Sync for TranscriptSegment
impl Unpin for TranscriptSegment
impl UnsafeUnpin for TranscriptSegment
impl UnwindSafe for TranscriptSegment
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