pub struct TranscriptSegment {
pub text: String,
pub speaker: Option<String>,
pub start_time: f64,
pub end_time: f64,
pub confidence: f64,
}Expand description
Transcript segment with speaker and timing.
Fields§
§text: StringSegment text
speaker: Option<String>Speaker identifier
start_time: f64Start time in seconds from recording start
end_time: f64End time in seconds from recording start
confidence: f64Confidence score (0.0 - 1.0)
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 (const: unstable) · 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
Source§impl PartialEq for TranscriptSegment
impl PartialEq for TranscriptSegment
Source§fn eq(&self, other: &TranscriptSegment) -> bool
fn eq(&self, other: &TranscriptSegment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TranscriptSegment
impl Serialize for TranscriptSegment
impl StructuralPartialEq for TranscriptSegment
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