#[non_exhaustive]pub struct RecognitionFeatures {
pub profanity_filter: bool,
pub enable_word_time_offsets: bool,
pub enable_word_confidence: bool,
pub enable_automatic_punctuation: bool,
pub enable_spoken_punctuation: bool,
pub enable_spoken_emojis: bool,
pub multi_channel_mode: MultiChannelMode,
pub diarization_config: Option<SpeakerDiarizationConfig>,
pub max_alternatives: i32,
/* private fields */
}Expand description
Available recognition features.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.profanity_filter: boolIf set to true, the server will attempt to filter out profanities,
replacing all but the initial character in each filtered word with
asterisks, for instance, “f***”. If set to false or omitted, profanities
won’t be filtered out.
enable_word_time_offsets: boolIf true, the top result includes a list of words and the start and end
time offsets (timestamps) for those words. If false, no word-level time
offset information is returned. The default is false.
enable_word_confidence: boolIf true, the top result includes a list of words and the confidence for
those words. If false, no word-level confidence information is returned.
The default is false.
enable_automatic_punctuation: boolIf true, adds punctuation to recognition result hypotheses. This feature
is only available in select languages. The default false value does not
add punctuation to result hypotheses.
enable_spoken_punctuation: boolThe spoken punctuation behavior for the call. If true, replaces spoken
punctuation with the corresponding symbols in the request. For example,
“how are you question mark” becomes “how are you?”. See
https://cloud.google.com/speech-to-text/docs/spoken-punctuation for
support. If false, spoken punctuation is not replaced.
enable_spoken_emojis: boolThe spoken emoji behavior for the call. If true, adds spoken emoji
formatting for the request. This will replace spoken emojis with the
corresponding Unicode symbols in the final transcript. If false, spoken
emojis are not replaced.
multi_channel_mode: MultiChannelModeMode for recognizing multi-channel audio.
diarization_config: Option<SpeakerDiarizationConfig>Configuration to enable speaker diarization and set additional parameters to make diarization better suited for your application. When this is enabled, we send all the words from the beginning of the audio for the top alternative in every consecutive STREAMING responses. This is done in order to improve our speaker tags as our models learn to identify the speakers in the conversation over time. For non-streaming requests, the diarization results will be provided only in the top alternative of the FINAL SpeechRecognitionResult.
max_alternatives: i32Maximum number of recognition hypotheses to be returned.
The server may return fewer than max_alternatives.
Valid values are 0-30. A value of 0 or 1 will return a maximum of
one. If omitted, will return a maximum of one.
Implementations§
Source§impl RecognitionFeatures
impl RecognitionFeatures
pub fn new() -> Self
Sourcepub fn set_profanity_filter<T: Into<bool>>(self, v: T) -> Self
pub fn set_profanity_filter<T: Into<bool>>(self, v: T) -> Self
Sets the value of profanity_filter.
§Example
let x = RecognitionFeatures::new().set_profanity_filter(true);Sourcepub fn set_enable_word_time_offsets<T: Into<bool>>(self, v: T) -> Self
pub fn set_enable_word_time_offsets<T: Into<bool>>(self, v: T) -> Self
Sets the value of enable_word_time_offsets.
§Example
let x = RecognitionFeatures::new().set_enable_word_time_offsets(true);Sourcepub fn set_enable_word_confidence<T: Into<bool>>(self, v: T) -> Self
pub fn set_enable_word_confidence<T: Into<bool>>(self, v: T) -> Self
Sets the value of enable_word_confidence.
§Example
let x = RecognitionFeatures::new().set_enable_word_confidence(true);Sourcepub fn set_enable_automatic_punctuation<T: Into<bool>>(self, v: T) -> Self
pub fn set_enable_automatic_punctuation<T: Into<bool>>(self, v: T) -> Self
Sets the value of enable_automatic_punctuation.
§Example
let x = RecognitionFeatures::new().set_enable_automatic_punctuation(true);Sourcepub fn set_enable_spoken_punctuation<T: Into<bool>>(self, v: T) -> Self
pub fn set_enable_spoken_punctuation<T: Into<bool>>(self, v: T) -> Self
Sets the value of enable_spoken_punctuation.
§Example
let x = RecognitionFeatures::new().set_enable_spoken_punctuation(true);Sourcepub fn set_enable_spoken_emojis<T: Into<bool>>(self, v: T) -> Self
pub fn set_enable_spoken_emojis<T: Into<bool>>(self, v: T) -> Self
Sets the value of enable_spoken_emojis.
§Example
let x = RecognitionFeatures::new().set_enable_spoken_emojis(true);Sourcepub fn set_multi_channel_mode<T: Into<MultiChannelMode>>(self, v: T) -> Self
pub fn set_multi_channel_mode<T: Into<MultiChannelMode>>(self, v: T) -> Self
Sets the value of multi_channel_mode.
§Example
use google_cloud_speech_v2::model::recognition_features::MultiChannelMode;
let x0 = RecognitionFeatures::new().set_multi_channel_mode(MultiChannelMode::SeparateRecognitionPerChannel);Sourcepub fn set_diarization_config<T>(self, v: T) -> Selfwhere
T: Into<SpeakerDiarizationConfig>,
pub fn set_diarization_config<T>(self, v: T) -> Selfwhere
T: Into<SpeakerDiarizationConfig>,
Sets the value of diarization_config.
§Example
use google_cloud_speech_v2::model::SpeakerDiarizationConfig;
let x = RecognitionFeatures::new().set_diarization_config(SpeakerDiarizationConfig::default()/* use setters */);Sourcepub fn set_or_clear_diarization_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<SpeakerDiarizationConfig>,
pub fn set_or_clear_diarization_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<SpeakerDiarizationConfig>,
Sets or clears the value of diarization_config.
§Example
use google_cloud_speech_v2::model::SpeakerDiarizationConfig;
let x = RecognitionFeatures::new().set_or_clear_diarization_config(Some(SpeakerDiarizationConfig::default()/* use setters */));
let x = RecognitionFeatures::new().set_or_clear_diarization_config(None::<SpeakerDiarizationConfig>);Sourcepub fn set_max_alternatives<T: Into<i32>>(self, v: T) -> Self
pub fn set_max_alternatives<T: Into<i32>>(self, v: T) -> Self
Sets the value of max_alternatives.
§Example
let x = RecognitionFeatures::new().set_max_alternatives(42);Trait Implementations§
Source§impl Clone for RecognitionFeatures
impl Clone for RecognitionFeatures
Source§fn clone(&self) -> RecognitionFeatures
fn clone(&self) -> RecognitionFeatures
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more