CPInstrumentClusterControllerDelegate

Trait CPInstrumentClusterControllerDelegate 

Source
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§

Source

unsafe fn instrumentClusterControllerDidConnectWindow( &self, instrument_cluster_window: &UIWindow, )
where Self: Sized + Message,

Available on crate feature objc2-ui-kit only.
Source

unsafe fn instrumentClusterControllerDidDisconnectWindow( &self, instrument_cluster_window: &UIWindow, )
where Self: Sized + Message,

Available on crate feature objc2-ui-kit only.
Source

unsafe fn instrumentClusterControllerDidZoomIn( &self, instrument_cluster_controller: &CPInstrumentClusterController, )
where Self: Sized + Message,

Source

unsafe fn instrumentClusterControllerDidZoomOut( &self, instrument_cluster_controller: &CPInstrumentClusterController, )
where Self: Sized + Message,

Source

unsafe fn instrumentClusterController_didChangeCompassSetting( &self, instrument_cluster_controller: &CPInstrumentClusterController, compass_setting: CPInstrumentClusterSetting, )
where Self: Sized + Message,

Source

unsafe fn instrumentClusterController_didChangeSpeedLimitSetting( &self, instrument_cluster_controller: &CPInstrumentClusterController, speed_limit_setting: CPInstrumentClusterSetting, )
where Self: Sized + Message,

Trait Implementations§

Source§

impl ProtocolType for dyn CPInstrumentClusterControllerDelegate

Source§

const NAME: &'static str = "CPInstrumentClusterControllerDelegate"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn CPInstrumentClusterControllerDelegate

Implementations on Foreign Types§

Source§

impl<T> CPInstrumentClusterControllerDelegate for ProtocolObject<T>

Implementors§