pub unsafe trait UILookToDictateCapable: NSObjectProtocol {
// Provided methods
unsafe fn isLookToDictateEnabled(&self) -> bool
where Self: Sized + Message { ... }
unsafe fn setLookToDictateEnabled(&self, look_to_dictate_enabled: bool)
where Self: Sized + Message { ... }
}Available on crate feature
UISearchBar only.Expand description
Provided Methods§
Sourceunsafe fn isLookToDictateEnabled(&self) -> bool
unsafe fn isLookToDictateEnabled(&self) -> bool
Enable or disable ‘Look To Dictate’ on the receiver.
Sourceunsafe fn setLookToDictateEnabled(&self, look_to_dictate_enabled: bool)
unsafe 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
Implementations on Foreign Types§
impl<T> UILookToDictateCapable for ProtocolObject<T>where
T: ?Sized + UILookToDictateCapable,
Implementors§
impl UILookToDictateCapable for UISearchBar
Available on crate features
UIResponder and UIView only.