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