pub trait NSPasteboardItemDataProvider: Sized {
// Required methods
unsafe fn pasteboard_item_provideDataForType(
self,
pasteboard: id,
item: id,
_type: id,
);
unsafe fn pasteboardFinishedWithDataProvider(self, pasteboard: id);
}๐Deprecated: use the objc2-app-kit crate instead
Required Methodsยง
unsafe fn pasteboard_item_provideDataForType( self, pasteboard: id, item: id, _type: id, )
๐Deprecated: use the objc2-app-kit crate instead
unsafe fn pasteboardFinishedWithDataProvider(self, pasteboard: id)
๐Deprecated: use the objc2-app-kit crate instead
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.