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