pub trait NSPasteboardWriting: Sized {
    // Required methods
    unsafe fn writableTypesForPasteboard(self, pasteboard: id) -> id;
    unsafe fn writingOptionsForType_pasteboard(
        self,
        _type: id,
        pasteboard: id
    ) -> NSPasteboardWritingOptions;
    unsafe fn pasteboardPropertyListForType(self, _type: id) -> id;
}

Required Methods§

source

unsafe fn writableTypesForPasteboard(self, pasteboard: id) -> id

source

unsafe fn writingOptionsForType_pasteboard( self, _type: id, pasteboard: id ) -> NSPasteboardWritingOptions

source

unsafe fn pasteboardPropertyListForType(self, _type: id) -> id

Implementors§