pub unsafe trait UILookToDictateCapable: NSObjectProtocol {
// Provided methods
fn isLookToDictateEnabled(&self) -> bool
where Self: Sized + Message { ... }
fn setLookToDictateEnabled(&self, look_to_dictate_enabled: bool)
where Self: Sized + Message { ... }
}Available on crate feature
UISearchBar only.Expand description
Provided Methods§
Sourcefn isLookToDictateEnabled(&self) -> bool
fn isLookToDictateEnabled(&self) -> bool
Enable or disable ‘Look To Dictate’ on the receiver.
Sourcefn setLookToDictateEnabled(&self, look_to_dictate_enabled: bool)
fn setLookToDictateEnabled(&self, look_to_dictate_enabled: bool)
Setter for isLookToDictateEnabled.
Trait Implementations§
Source§impl ProtocolType for dyn UILookToDictateCapable
impl ProtocolType for dyn UILookToDictateCapable
impl<T> ImplementedBy<T> for dyn UILookToDictateCapable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".