pub unsafe trait NSUserActivityUISceneActivationConditions:
ClassType
+ Sized
+ Sealed {
// Provided methods
unsafe fn targetContentIdentifier(&self) -> Option<Retained<NSString>> { ... }
unsafe fn setTargetContentIdentifier(
&self,
target_content_identifier: Option<&NSString>,
) { ... }
}Available on crate feature
UISceneActivationConditions only.Expand description
Category “UISceneActivationConditions” on NSUserActivity.
Provided Methods§
unsafe fn targetContentIdentifier(&self) -> Option<Retained<NSString>>
Sourceunsafe fn setTargetContentIdentifier(
&self,
target_content_identifier: Option<&NSString>,
)
unsafe fn setTargetContentIdentifier( &self, target_content_identifier: Option<&NSString>, )
Setter for targetContentIdentifier.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.