pub trait ISpeechRecognitionConstraint_Impl: Sized {
    // Required methods
    fn IsEnabled(&self) -> Result<bool>;
    fn SetIsEnabled(&self, value: bool) -> Result<()>;
    fn Tag(&self) -> Result<HSTRING>;
    fn SetTag(&self, value: &HSTRING) -> Result<()>;
    fn Type(&self) -> Result<SpeechRecognitionConstraintType>;
    fn Probability(&self) -> Result<SpeechRecognitionConstraintProbability>;
    fn SetProbability(
        &self,
        value: SpeechRecognitionConstraintProbability
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§