[go: up one dir, main page]

Trait NSURL

Source
pub trait NSURL: Sized {
Show 64 methods // Required methods unsafe fn alloc(_: Self) -> *mut Object; unsafe fn URLWithString_(_: Self, string: *mut Object) -> *mut Object; unsafe fn initWithString_(self, string: *mut Object) -> *mut Object; unsafe fn URLWithString_relativeToURL_( _: Self, string: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn initWithString_relativeToURL_( self, string: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn fileURLWithPath_isDirectory_( _: Self, path: *mut Object, is_dir: i8, ) -> *mut Object; unsafe fn initFileURLWithPath_isDirectory_( self, path: *mut Object, is_dir: i8, ) -> *mut Object; unsafe fn fileURLWithPath_relativeToURL_( _: Self, path: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn initFileURLWithPath_relativeToURL_( self, path: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn fileURLWithPath_isDirectory_relativeToURL_( _: Self, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object; unsafe fn initFileURLWithPath_isDirectory_relativeToURL_( self, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object; unsafe fn fileURLWithPath_(_: Self, path: *mut Object) -> *mut Object; unsafe fn initFileURLWithPath_(self, path: *mut Object) -> *mut Object; unsafe fn fileURLWithPathComponents_( _: Self, path_components: *mut Object, ) -> *mut Object; unsafe fn URLByResolvingAliasFileAtURL_options_error_( _: Self, url: *mut Object, options: NSURLBookmarkResolutionOptions, error: *mut *mut Object, ) -> *mut Object; unsafe fn URLByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_( _: Self, data: *mut Object, options: NSURLBookmarkResolutionOptions, relative_to_url: *mut Object, is_stale: *mut i8, error: *mut *mut Object, ) -> *mut Object; unsafe fn initByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_( self, data: *mut Object, options: NSURLBookmarkResolutionOptions, relative_to_url: *mut Object, is_stale: *mut i8, error: *mut *mut Object, ) -> *mut Object; unsafe fn absoluteURLWithDataRepresentation_relativeToURL_( _: Self, data: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn initAbsoluteURLWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn URLWithDataRepresentation_relativeToURL_( _: Self, data: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn initWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object; unsafe fn dataRepresentation(self) -> *mut Object; unsafe fn isEqual_(self, id: *mut Object) -> i8; unsafe fn checkResourceIsReachableAndReturnError_( self, error: *mut Object, ) -> i8; unsafe fn isFileReferenceURL(self) -> i8; unsafe fn isFileURL(self) -> i8; unsafe fn absoluteString(self) -> *mut Object; unsafe fn absoluteURL(self) -> *mut Object; unsafe fn baseURL(self) -> *mut Object; unsafe fn fragment(self) -> *mut Object; unsafe fn host(self) -> *mut Object; unsafe fn lastPathComponent(self) -> *mut Object; unsafe fn parameterString(self) -> *mut Object; unsafe fn password(self) -> *mut Object; unsafe fn path(self) -> *mut Object; unsafe fn pathComponents(self) -> *mut Object; unsafe fn pathExtension(self) -> *mut Object; unsafe fn port(self) -> *mut Object; unsafe fn query(self) -> *mut Object; unsafe fn relativePath(self) -> *mut Object; unsafe fn relativeString(self) -> *mut Object; unsafe fn resourceSpecifier(self) -> *mut Object; unsafe fn scheme(self) -> *mut Object; unsafe fn standardizedURL(self) -> *mut Object; unsafe fn user(self) -> *mut Object; unsafe fn NSURLResourceKey(self) -> *mut Object; unsafe fn filePathURL(self) -> *mut Object; unsafe fn fileReferenceURL(self) -> *mut Object; unsafe fn URLByAppendingPathComponent_( self, path_component: *mut Object, ) -> *mut Object; unsafe fn URLByAppendingPathComponent_isDirectory_( self, path_component: *mut Object, is_dir: i8, ) -> *mut Object; unsafe fn URLByAppendingPathExtension_( self, extension: *mut Object, ) -> *mut Object; unsafe fn URLByDeletingLastPathComponent(self) -> *mut Object; unsafe fn URLByDeletingPathExtension(self) -> *mut Object; unsafe fn URLByResolvingSymlinksInPath(self) -> *mut Object; unsafe fn URLByStandardizingPath(self) -> *mut Object; unsafe fn hasDirectoryPath(self) -> i8; unsafe fn bookmarkDataWithContentsOfURL_error_( _: Self, url: *mut Object, error: *mut Object, ) -> *mut Object; unsafe fn bookmarkDataWithOptions_includingResourceValuesForKeys_relativeToURL_error_( self, options: NSURLBookmarkCreationOptions, resource_value_for_keys: *mut Object, relative_to_url: *mut Object, error: *mut Object, ) -> *mut Object; unsafe fn writeBookmarkData_toURL_options_error_( _: Self, data: *mut Object, to_url: *mut Object, options: NSURLBookmarkCreationOptions, error: *mut Object, ) -> *mut Object; unsafe fn startAccessingSecurityScopedResource(self) -> i8; unsafe fn stopAccessingSecurityScopedResource(self); unsafe fn NSURLBookmarkFileCreationOptions( self, ) -> NSURLBookmarkCreationOptions; unsafe fn NSURLBookmarkCreationOptions(self) -> NSURLBookmarkCreationOptions; unsafe fn NSURLBookmarkResolutionOptions( self, ) -> NSURLBookmarkResolutionOptions;
}
๐Ÿ‘ŽDeprecated: use the objc2-foundation crate instead

Required Methodsยง

Source

unsafe fn alloc(_: Self) -> *mut Object

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

unsafe fn URLWithString_(_: Self, string: *mut Object) -> *mut Object

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

unsafe fn initWithString_(self, string: *mut Object) -> *mut Object

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

unsafe fn URLWithString_relativeToURL_( _: Self, string: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initWithString_relativeToURL_( self, string: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_isDirectory_( _: Self, path: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn initFileURLWithPath_isDirectory_( self, path: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn fileURLWithPath_relativeToURL_( _: Self, path: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initFileURLWithPath_relativeToURL_( self, path: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_isDirectory_relativeToURL_( _: Self, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object

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

unsafe fn initFileURLWithPath_isDirectory_relativeToURL_( self, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_(_: Self, path: *mut Object) -> *mut Object

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

unsafe fn initFileURLWithPath_(self, path: *mut Object) -> *mut Object

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

unsafe fn fileURLWithPathComponents_( _: Self, path_components: *mut Object, ) -> *mut Object

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

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

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

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

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

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

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

unsafe fn absoluteURLWithDataRepresentation_relativeToURL_( _: Self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initAbsoluteURLWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn URLWithDataRepresentation_relativeToURL_( _: Self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn dataRepresentation(self) -> *mut Object

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

unsafe fn isEqual_(self, id: *mut Object) -> i8

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

unsafe fn checkResourceIsReachableAndReturnError_( self, error: *mut Object, ) -> i8

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

unsafe fn isFileReferenceURL(self) -> i8

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

unsafe fn isFileURL(self) -> i8

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

unsafe fn absoluteString(self) -> *mut Object

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

unsafe fn absoluteURL(self) -> *mut Object

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

unsafe fn baseURL(self) -> *mut Object

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

unsafe fn fragment(self) -> *mut Object

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

unsafe fn host(self) -> *mut Object

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

unsafe fn lastPathComponent(self) -> *mut Object

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

unsafe fn parameterString(self) -> *mut Object

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

unsafe fn password(self) -> *mut Object

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

unsafe fn path(self) -> *mut Object

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

unsafe fn pathComponents(self) -> *mut Object

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

unsafe fn pathExtension(self) -> *mut Object

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

unsafe fn port(self) -> *mut Object

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

unsafe fn query(self) -> *mut Object

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

unsafe fn relativePath(self) -> *mut Object

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

unsafe fn relativeString(self) -> *mut Object

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

unsafe fn resourceSpecifier(self) -> *mut Object

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

unsafe fn scheme(self) -> *mut Object

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

unsafe fn standardizedURL(self) -> *mut Object

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

unsafe fn user(self) -> *mut Object

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

unsafe fn NSURLResourceKey(self) -> *mut Object

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

unsafe fn filePathURL(self) -> *mut Object

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

unsafe fn fileReferenceURL(self) -> *mut Object

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

unsafe fn URLByAppendingPathComponent_( self, path_component: *mut Object, ) -> *mut Object

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

unsafe fn URLByAppendingPathComponent_isDirectory_( self, path_component: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn URLByAppendingPathExtension_( self, extension: *mut Object, ) -> *mut Object

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

unsafe fn URLByDeletingLastPathComponent(self) -> *mut Object

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

unsafe fn URLByDeletingPathExtension(self) -> *mut Object

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

unsafe fn URLByResolvingSymlinksInPath(self) -> *mut Object

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

unsafe fn URLByStandardizingPath(self) -> *mut Object

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

unsafe fn hasDirectoryPath(self) -> i8

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

unsafe fn bookmarkDataWithContentsOfURL_error_( _: Self, url: *mut Object, error: *mut Object, ) -> *mut Object

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

unsafe fn bookmarkDataWithOptions_includingResourceValuesForKeys_relativeToURL_error_( self, options: NSURLBookmarkCreationOptions, resource_value_for_keys: *mut Object, relative_to_url: *mut Object, error: *mut Object, ) -> *mut Object

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

unsafe fn writeBookmarkData_toURL_options_error_( _: Self, data: *mut Object, to_url: *mut Object, options: NSURLBookmarkCreationOptions, error: *mut Object, ) -> *mut Object

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

unsafe fn startAccessingSecurityScopedResource(self) -> i8

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

unsafe fn stopAccessingSecurityScopedResource(self)

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

unsafe fn NSURLBookmarkFileCreationOptions(self) -> NSURLBookmarkCreationOptions

๐Ÿ‘Ž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

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ยง

Sourceยง

impl NSURL for *mut Object

Sourceยง

unsafe fn alloc(_: *mut Object) -> *mut Object

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

unsafe fn URLWithString_(_: *mut Object, string: *mut Object) -> *mut Object

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

unsafe fn initWithString_(self, string: *mut Object) -> *mut Object

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

unsafe fn URLWithString_relativeToURL_( _: *mut Object, string: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initWithString_relativeToURL_( self, string: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_isDirectory_( _: *mut Object, path: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn initFileURLWithPath_isDirectory_( self, path: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn fileURLWithPath_relativeToURL_( _: *mut Object, path: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initFileURLWithPath_relativeToURL_( self, path: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_isDirectory_relativeToURL_( _: *mut Object, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object

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

unsafe fn initFileURLWithPath_isDirectory_relativeToURL_( self, path: *mut Object, is_dir: i8, url: *mut Object, ) -> *mut Object

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

unsafe fn fileURLWithPath_(_: *mut Object, path: *mut Object) -> *mut Object

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

unsafe fn initFileURLWithPath_(self, path: *mut Object) -> *mut Object

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

unsafe fn fileURLWithPathComponents_( _: *mut Object, path_components: *mut Object, ) -> *mut Object

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

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

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

unsafe fn URLByResolvingBookmarkData_options_relativeToURL_bookmarkDataIsStale_error_( _: *mut Object, data: *mut Object, options: NSURLBookmarkResolutionOptions, relative_to_url: *mut Object, is_stale: *mut i8, error: *mut *mut Object, ) -> *mut Object

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

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

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

unsafe fn absoluteURLWithDataRepresentation_relativeToURL_( _: *mut Object, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initAbsoluteURLWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn URLWithDataRepresentation_relativeToURL_( _: *mut Object, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn initWithDataRepresentation_relativeToURL_( self, data: *mut Object, url: *mut Object, ) -> *mut Object

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

unsafe fn dataRepresentation(self) -> *mut Object

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

unsafe fn isEqual_(self, id: *mut Object) -> i8

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

unsafe fn checkResourceIsReachableAndReturnError_( self, error: *mut Object, ) -> i8

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

unsafe fn isFileReferenceURL(self) -> i8

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

unsafe fn isFileURL(self) -> i8

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

unsafe fn absoluteString(self) -> *mut Object

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

unsafe fn absoluteURL(self) -> *mut Object

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

unsafe fn baseURL(self) -> *mut Object

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

unsafe fn fragment(self) -> *mut Object

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

unsafe fn host(self) -> *mut Object

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

unsafe fn lastPathComponent(self) -> *mut Object

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

unsafe fn parameterString(self) -> *mut Object

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

unsafe fn password(self) -> *mut Object

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

unsafe fn path(self) -> *mut Object

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

unsafe fn pathComponents(self) -> *mut Object

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

unsafe fn pathExtension(self) -> *mut Object

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

unsafe fn port(self) -> *mut Object

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

unsafe fn query(self) -> *mut Object

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

unsafe fn relativePath(self) -> *mut Object

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

unsafe fn relativeString(self) -> *mut Object

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

unsafe fn resourceSpecifier(self) -> *mut Object

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

unsafe fn scheme(self) -> *mut Object

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

unsafe fn standardizedURL(self) -> *mut Object

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

unsafe fn user(self) -> *mut Object

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

unsafe fn NSURLResourceKey(self) -> *mut Object

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

unsafe fn filePathURL(self) -> *mut Object

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

unsafe fn fileReferenceURL(self) -> *mut Object

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

unsafe fn URLByAppendingPathComponent_( self, path_component: *mut Object, ) -> *mut Object

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

unsafe fn URLByAppendingPathComponent_isDirectory_( self, path_component: *mut Object, is_dir: i8, ) -> *mut Object

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

unsafe fn URLByAppendingPathExtension_( self, extension: *mut Object, ) -> *mut Object

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

unsafe fn URLByDeletingLastPathComponent(self) -> *mut Object

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

unsafe fn URLByDeletingPathExtension(self) -> *mut Object

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

unsafe fn URLByResolvingSymlinksInPath(self) -> *mut Object

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

unsafe fn URLByStandardizingPath(self) -> *mut Object

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

unsafe fn hasDirectoryPath(self) -> i8

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

unsafe fn bookmarkDataWithContentsOfURL_error_( _: *mut Object, url: *mut Object, error: *mut Object, ) -> *mut Object

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

unsafe fn bookmarkDataWithOptions_includingResourceValuesForKeys_relativeToURL_error_( self, options: NSURLBookmarkCreationOptions, resource_value_for_keys: *mut Object, relative_to_url: *mut Object, error: *mut Object, ) -> *mut Object

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

unsafe fn writeBookmarkData_toURL_options_error_( _: *mut Object, data: *mut Object, to_url: *mut Object, options: NSURLBookmarkCreationOptions, error: *mut Object, ) -> *mut Object

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

unsafe fn startAccessingSecurityScopedResource(self) -> i8

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

unsafe fn stopAccessingSecurityScopedResource(self)

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

unsafe fn NSURLBookmarkFileCreationOptions(self) -> NSURLBookmarkCreationOptions

๐Ÿ‘Ž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

Implementorsยง