pub trait NSPasteboardReading: Sized {
    // Required methods
    unsafe fn initWithPasteboardPropertyList_ofType(
        self,
        propertyList: id,
        _type: id
    ) -> id;
    unsafe fn readableTypesForPasteboard(self, pasteboard: id) -> id;
    unsafe fn readingOptionsForType_pasteboard(
        self,
        _type: id,
        pasteboard: id
    ) -> NSPasteboardReadingOptions;
}

Required Methods§

source

unsafe fn initWithPasteboardPropertyList_ofType( self, propertyList: id, _type: id ) -> id

source

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

source

unsafe fn readingOptionsForType_pasteboard( self, _type: id, pasteboard: id ) -> NSPasteboardReadingOptions

Implementors§