pub unsafe trait CPInstrumentClusterControllerDelegate: NSObjectProtocol {
// Provided methods
unsafe fn instrumentClusterControllerDidConnectWindow(
&self,
instrument_cluster_window: &UIWindow,
)
where Self: Sized + Message { ... }
unsafe fn instrumentClusterControllerDidDisconnectWindow(
&self,
instrument_cluster_window: &UIWindow,
)
where Self: Sized + Message { ... }
unsafe fn instrumentClusterControllerDidZoomIn(
&self,
instrument_cluster_controller: &CPInstrumentClusterController,
)
where Self: Sized + Message { ... }
unsafe fn instrumentClusterControllerDidZoomOut(
&self,
instrument_cluster_controller: &CPInstrumentClusterController,
)
where Self: Sized + Message { ... }
unsafe fn instrumentClusterController_didChangeCompassSetting(
&self,
instrument_cluster_controller: &CPInstrumentClusterController,
compass_setting: CPInstrumentClusterSetting,
)
where Self: Sized + Message { ... }
unsafe fn instrumentClusterController_didChangeSpeedLimitSetting(
&self,
instrument_cluster_controller: &CPInstrumentClusterController,
speed_limit_setting: CPInstrumentClusterSetting,
)
where Self: Sized + Message { ... }
}Available on crate feature
CPInstrumentClusterController only.Expand description
Provided Methods§
unsafe fn instrumentClusterControllerDidConnectWindow( &self, instrument_cluster_window: &UIWindow, )
Available on crate feature
objc2-ui-kit only.unsafe fn instrumentClusterControllerDidDisconnectWindow( &self, instrument_cluster_window: &UIWindow, )
Available on crate feature
objc2-ui-kit only.