pub unsafe trait MKLookAroundViewControllerDelegate: NSObjectProtocol {
// Provided methods
unsafe fn lookAroundViewControllerWillUpdateScene(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidUpdateScene(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerWillPresentFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidPresentFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerWillDismissFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
unsafe fn lookAroundViewControllerDidDismissFullScreen(
&self,
view_controller: &MKLookAroundViewController,
)
where Self: Sized + Message { ... }
}Available on crate feature
MKLookAroundViewController only.Expand description
Provided Methods§
unsafe fn lookAroundViewControllerWillUpdateScene( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.unsafe fn lookAroundViewControllerDidUpdateScene( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.unsafe fn lookAroundViewControllerWillPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.unsafe fn lookAroundViewControllerDidPresentFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.unsafe fn lookAroundViewControllerWillDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.unsafe fn lookAroundViewControllerDidDismissFullScreen( &self, view_controller: &MKLookAroundViewController, )
Available on macOS and crate feature
objc2-app-kit only.Trait Implementations§
Source§impl ProtocolType for dyn MKLookAroundViewControllerDelegate
impl ProtocolType for dyn MKLookAroundViewControllerDelegate
impl<T> ImplementedBy<T> for dyn MKLookAroundViewControllerDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".