pub unsafe trait NSObjectIKSaveOptionsDelegate:
ClassType
+ Sized
+ Sealed {
// Provided method
unsafe fn saveOptions_shouldShowUTType(
&self,
save_options: Option<&IKSaveOptions>,
ut_type: Option<&NSString>,
) -> bool { ... }
}Available on crate feature
IKSaveOptions only.Expand description
Category “IKSaveOptionsDelegate” on NSObject.
Provided Methods§
Sourceunsafe fn saveOptions_shouldShowUTType(
&self,
save_options: Option<&IKSaveOptions>,
ut_type: Option<&NSString>,
) -> bool
unsafe fn saveOptions_shouldShowUTType( &self, save_options: Option<&IKSaveOptions>, ut_type: Option<&NSString>, ) -> bool
§Safety
save_optionsmight not allowNone.ut_typemight not allowNone.
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.
Implementations on Foreign Types§
impl NSObjectIKSaveOptionsDelegate for NSObject
Available on crate feature
ImageKit only.