use serde_derive::{Deserialize, Serialize}; #[derive(Deserialize, Serialize, Debug)] pub struct Configuration { /// Sample rate the audio will be provided at. sample_rate: i32, /// Show time ranges of each word in the transcription. words: bool, } impl Configuration { pub fn new(sample_rate: i32) -> Self { Self { sample_rate, // We always want to receive the words with their time ranges. words: true, } } } #[derive(Deserialize, Serialize, Debug)] pub struct Transcript { pub result: Vec, pub text: String, } #[derive(Deserialize, Serialize, Debug)] pub struct WordInfo { #[serde(rename = "conf")] pub confidence: f64, pub word: String, pub start: f64, pub end: f64, }