pub struct Transcript {
pub text: String,
pub words: Vec<Word>,
pub speakers: Vec<Speaker>,
pub confidence: f32,
pub language_detected: Option<String>,
}Available on crate feature
audio only.Expand description
A transcription result.
Fields§
§text: StringFull transcribed text.
words: Vec<Word>Per-word details with timestamps.
speakers: Vec<Speaker>Identified speakers.
confidence: f32Overall confidence score (0.0–1.0).
language_detected: Option<String>Detected language (BCP-47).
Trait Implementations§
Source§impl Clone for Transcript
impl Clone for Transcript
Source§fn clone(&self) -> Transcript
fn clone(&self) -> Transcript
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 Transcript
impl Debug for Transcript
Source§impl Default for Transcript
impl Default for Transcript
Source§fn default() -> Transcript
fn default() -> Transcript
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Transcript
impl RefUnwindSafe for Transcript
impl Send for Transcript
impl Sync for Transcript
impl Unpin for Transcript
impl UnsafeUnpin for Transcript
impl UnwindSafe for Transcript
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