pub unsafe trait NSSearchFieldDelegate: NSTextFieldDelegate + MainThreadOnly {
// Provided methods
fn searchFieldDidStartSearching(&self, sender: &NSSearchField)
where Self: Sized + Message { ... }
fn searchFieldDidEndSearching(&self, sender: &NSSearchField)
where Self: Sized + Message { ... }
}Available on crate features
NSControl and NSSearchField and NSTextField only.Expand description
Provided Methods§
fn searchFieldDidStartSearching(&self, sender: &NSSearchField)
Available on crate features
NSResponder and NSView only.fn searchFieldDidEndSearching(&self, sender: &NSSearchField)
Available on crate features
NSResponder and NSView only.Trait Implementations§
impl<T> ImplementedBy<T> for dyn NSSearchFieldDelegate
Source§impl ProtocolType for dyn NSSearchFieldDelegate
impl ProtocolType for dyn NSSearchFieldDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".