marek_speech_recognition_api/recognizer_info.rs
1pub struct RecognizerInfo {
2 /// Name of the recognizer
3 pub name: String,
4
5 /// Some recognizers like Google's libsoda do not work
6 /// in a different speed than in realtime. In such case it is set to 'true'.
7 pub is_realtime_only: bool,
8
9 /// Does output has punctuation.
10 pub has_punctuation: bool,
11}