Type Alias id

Source
pub type id = *mut Object;
๐Ÿ‘ŽDeprecated: use the objc2 crate instead

Trait Implementationsยง

Sourceยง

impl NSArray for id

Sourceยง

unsafe fn init(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn count(self) -> NSUInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn arrayByAddingObjectFromArray(self, object: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn arrayByAddingObjectsFromArray(self, objects: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn objectAtIndex(self, index: NSUInteger) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn array(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn arrayWithObjects(_: Self, objects: &[id]) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn arrayWithObject(_: Self, object: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSAutoreleasePool for id

Sourceยง

unsafe fn autorelease(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn drain(self)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn new(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSBundle for id

Sourceยง

unsafe fn mainBundle() -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn loadNibNamed_owner_topLevelObjects_( self, name: id, owner: id, topLevelObjects: *mut id, ) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn bundleIdentifier(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn resourcePath(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSData for id

Sourceยง

unsafe fn initWithBase64EncodedData_options_( self, base64Data: id, options: NSDataBase64DecodingOptions, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithBase64EncodedString_options_( self, base64String: id, options: NSDataBase64DecodingOptions, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithBytes_length_( self, bytes: *const c_void, length: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithBytesNoCopy_length_( self, bytes: *const c_void, length: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithBytesNoCopy_length_deallocator_( self, bytes: *const c_void, length: NSUInteger, deallocator: *mut Block<(*const c_void, NSUInteger), ()>, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithBytesNoCopy_length_freeWhenDone_( self, bytes: *const c_void, length: NSUInteger, freeWhenDone: BOOL, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfFile_(self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfFile_options_error( self, path: id, mask: NSDataReadingOptions, errorPtr: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfURL_(self, aURL: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfURL_options_error_( self, aURL: id, mask: NSDataReadingOptions, errorPtr: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithData_(self, data: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn bytes(self) -> *const c_void

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn description(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn enumerateByteRangesUsingBlock_( self, block: *mut Block<(*const c_void, NSRange, *mut BOOL), ()>, )

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn getBytes_length_(self, buffer: *mut c_void, length: NSUInteger)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn getBytes_range_(self, buffer: *mut c_void, range: NSRange)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn subdataWithRange_(self, range: NSRange) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn rangeOfData_options_range_( self, dataToFind: id, options: NSDataSearchOptions, searchRange: NSRange, ) -> NSRange

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn base64EncodedDataWithOptions_( self, options: NSDataBase64EncodingOptions, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn base64EncodedStringWithOptions_( self, options: NSDataBase64EncodingOptions, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isEqualToData_(self, otherData: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn length(self) -> NSUInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToFile_atomically_(self, path: id, atomically: BOOL) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToFile_options_error_( self, path: id, mask: NSDataWritingOptions, errorPtr: *mut id, ) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToURL_atomically_(self, aURL: id, atomically: BOOL) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToURL_options_error_( self, aURL: id, mask: NSDataWritingOptions, errorPtr: *mut id, ) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn data(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithBytes_length_( _: Self, bytes: *const c_void, length: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithBytesNoCopy_length_( _: Self, bytes: *const c_void, length: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithBytesNoCopy_length_freeWhenDone_( _: Self, bytes: *const c_void, length: NSUInteger, freeWhenDone: BOOL, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithContentsOfFile_(_: Self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithContentsOfFile_options_error_( _: Self, path: id, mask: NSDataReadingOptions, errorPtr: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithContentsOfURL_(_: Self, aURL: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithContentsOfURL_options_error_( _: Self, aURL: id, mask: NSDataReadingOptions, errorPtr: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataWithData_(_: Self, aData: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSDate for id

Sourceยง

unsafe fn distantPast(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn distantFuture(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSDictionary for id

Sourceยง

unsafe fn init(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfFile_(self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithContentsOfURL_(self, aURL: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithDictionary_(self, otherDictionary: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithDictionary_copyItems_( self, otherDictionary: id, flag: BOOL, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithObjects_forKeys_(self, objects: id, keys: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithObjects_forKeys_count_( self, objects: id, keys: id, count: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithObjectsAndKeys_(self, firstObject: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn count(self) -> NSUInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isEqualToDictionary_(self, otherDictionary: id) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn allKeys(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn allKeysForObject_(self, anObject: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn allValues(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn objectForKey_(self, aKey: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn objectForKeyedSubscript_(self, key: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn objectsForKeys_notFoundMarker_(self, keys: id, anObject: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn valueForKey_(self, key: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keyEnumerator(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn objectEnumerator(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn enumerateKeysAndObjectsUsingBlock_( self, block: *mut Block<(id, id, *mut BOOL), ()>, )

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn enumerateKeysAndObjectsWithOptions_usingBlock_( self, opts: NSEnumerationOptions, block: *mut Block<(id, id, *mut BOOL), ()>, )

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keysSortedByValueUsingSelector_(self, comparator: SEL) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keysSortedByValueUsingComparator_(self, cmptr: NSComparator) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keysSortedByValueWithOptions_usingComparator_( self, opts: NSEnumerationOptions, cmptr: NSComparator, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keysOfEntriesPassingTest_( self, predicate: *mut Block<(id, id, *mut BOOL), BOOL>, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn keysOfEntriesWithOptions_PassingTest_( self, opts: NSEnumerationOptions, predicate: *mut Block<(id, id, *mut BOOL), BOOL>, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToFile_atomically_(self, path: id, flag: BOOL) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeToURL_atomically_(self, aURL: id, flag: BOOL) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileCreationDate(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileExtensionHidden(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileGroupOwnerAccountID(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileGroupOwnerAccountName(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileIsAppendOnly(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileIsImmutable(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileModificationDate(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileOwnerAccountID(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileOwnerAccountName(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn filePosixPermissions(self) -> NSUInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileSize(self) -> c_ulonglong

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileSystemFileNumber(self) -> NSUInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileSystemNumber(self) -> NSInteger

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileType(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn description(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn descriptionInStringsFileFormat(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn descriptionWithLocale_(self, locale: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn descriptionWithLocale_indent_( self, locale: id, indent: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionary(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithContentsOfFile_(_: Self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithContentsOfURL_(_: Self, aURL: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithDictionary_(_: Self, otherDictionary: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithObject_forKey_(_: Self, anObject: id, aKey: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithObjects_forKeys_(_: Self, objects: id, keys: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithObjects_forKeys_count_( _: Self, objects: *const id, keys: *const id, count: NSUInteger, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dictionaryWithObjectsAndKeys_(_: Self, firstObject: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn sharedKeySetForKeys_(_: Self, keys: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSFastEnumeration for id

Sourceยง

unsafe fn iter(self) -> NSFastIterator โ“˜

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSProcessInfo for id

Sourceยง

unsafe fn processName(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn systemUptime(self) -> NSTimeInterval

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn operatingSystemVersion(self) -> NSOperatingSystemVersion

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isOperatingSystemAtLeastVersion( self, version: NSOperatingSystemVersion, ) -> bool

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn processInfo(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSRunLoop for id

Sourceยง

unsafe fn currentRunLoop() -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn performSelector_target_argument_order_modes_( self, aSelector: SEL, target: id, anArgument: id, order: NSUInteger, modes: id, )

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSString for id

Sourceยง

unsafe fn isEqualToString(self, other: &str) -> bool

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn stringByAppendingString_(self, other: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn init_str(self, string: &str) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn len(self) -> usize

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn UTF8String(self) -> *const c_char

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn substringWithRange(self, range: NSRange) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn alloc(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSURL for id

Sourceยง

unsafe fn alloc(_: Self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLWithString_(_: Self, string: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithString_(self, string: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLWithString_relativeToURL_(_: Self, string: id, url: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithString_relativeToURL_(self, string: id, url: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileURLWithPath_isDirectory_(_: Self, path: id, is_dir: BOOL) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initFileURLWithPath_isDirectory_(self, path: id, is_dir: BOOL) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileURLWithPath_relativeToURL_(_: Self, path: id, url: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initFileURLWithPath_relativeToURL_(self, path: id, url: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileURLWithPath_isDirectory_relativeToURL_( _: Self, path: id, is_dir: BOOL, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initFileURLWithPath_isDirectory_relativeToURL_( self, path: id, is_dir: BOOL, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileURLWithPath_(_: Self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initFileURLWithPath_(self, path: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileURLWithPathComponents_(_: Self, path_components: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByResolvingAliasFileAtURL_options_error_( _: Self, url: id, options: NSURLBookmarkResolutionOptions, error: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_( _: Self, data: id, options: NSURLBookmarkResolutionOptions, relative_to_url: id, is_stale: *mut BOOL, error: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_( self, data: id, options: NSURLBookmarkResolutionOptions, relative_to_url: id, is_stale: *mut BOOL, error: *mut id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn absoluteURLWithDataRepresentation_relativeToURL_( _: Self, data: id, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initAbsoluteURLWithDataRepresentation_relativeToURL_( self, data: id, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLWithDataRepresentation_relativeToURL_( _: Self, data: id, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn initWithDataRepresentation_relativeToURL_( self, data: id, url: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn dataRepresentation(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isEqual_(self, id: id) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn checkResourceIsReachableAndReturnError_(self, error: id) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isFileReferenceURL(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn isFileURL(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn absoluteString(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn absoluteURL(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn baseURL(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fragment(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn host(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn lastPathComponent(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn parameterString(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn password(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn path(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn pathComponents(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn pathExtension(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn port(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn query(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn relativePath(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn relativeString(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn resourceSpecifier(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn scheme(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn standardizedURL(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn user(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn NSURLResourceKey(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn filePathURL(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn fileReferenceURL(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByAppendingPathComponent_(self, path_component: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByAppendingPathComponent_isDirectory_( self, path_component: id, is_dir: BOOL, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByAppendingPathExtension_(self, extension: id) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByDeletingLastPathComponent(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByDeletingPathExtension(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByResolvingSymlinksInPath(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn URLByStandardizingPath(self) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn hasDirectoryPath(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn bookmarkDataWithContentsOfURL_error_( _: Self, url: id, error: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn bookmarkDataWithOptions_includingResourceValuesForKeys_relativeToURL_error_( self, options: NSURLBookmarkCreationOptions, resource_value_for_keys: id, relative_to_url: id, error: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn writeBookmarkData_toURL_options_error_( _: Self, data: id, to_url: id, options: NSURLBookmarkFileCreationOptions, error: id, ) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn startAccessingSecurityScopedResource(self) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn stopAccessingSecurityScopedResource(self)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn NSURLBookmarkFileCreationOptions( self, ) -> NSURLBookmarkFileCreationOptions

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn NSURLBookmarkCreationOptions(self) -> NSURLBookmarkCreationOptions

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn NSURLBookmarkResolutionOptions(self) -> NSURLBookmarkResolutionOptions

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSUserDefaults for id

Sourceยง

unsafe fn standardUserDefaults() -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn setBool_forKey_(self, value: BOOL, key: id)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn bool_forKey_(self, key: id) -> BOOL

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn removeObject_forKey_(self, key: id)

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

impl NSValue for id

Sourceยง

unsafe fn valueWithPoint(_: Self, point: NSPoint) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead
Sourceยง

unsafe fn valueWithSize(_: Self, size: NSSize) -> id

๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead