pub unsafe trait NSSpeechRecognizerDelegate: NSObjectProtocol + MainThreadOnly {
// Provided method
fn speechRecognizer_didRecognizeCommand(
&self,
sender: &NSSpeechRecognizer,
command: &NSString,
)
where Self: Sized + Message { ... }
}Available on crate feature
NSSpeechRecognizer only.Expand description
Provided Methods§
fn speechRecognizer_didRecognizeCommand( &self, sender: &NSSpeechRecognizer, command: &NSString, )
Trait Implementations§
impl<T> ImplementedBy<T> for dyn NSSpeechRecognizerDelegate
Source§impl ProtocolType for dyn NSSpeechRecognizerDelegate
impl ProtocolType for dyn NSSpeechRecognizerDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".