pub unsafe trait NSFileManagerDelegate: NSObjectProtocol {
Show 16 methods
// Provided methods
unsafe fn fileManager_shouldCopyItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldCopyItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_copyingItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_copyingItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldMoveItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldMoveItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_movingItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_movingItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldLinkItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldLinkItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_linkingItemAtPath_toPath(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_path: &NSString,
dst_path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_linkingItemAtURL_toURL(
&self,
file_manager: &NSFileManager,
error: &NSError,
src_url: &NSURL,
dst_url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldRemoveItemAtPath(
&self,
file_manager: &NSFileManager,
path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldRemoveItemAtURL(
&self,
file_manager: &NSFileManager,
url: &NSURL
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_removingItemAtPath(
&self,
file_manager: &NSFileManager,
error: &NSError,
path: &NSString
) -> bool
where Self: Sized + Message { ... }
unsafe fn fileManager_shouldProceedAfterError_removingItemAtURL(
&self,
file_manager: &NSFileManager,
error: &NSError,
url: &NSURL
) -> bool
where Self: Sized + Message { ... }
}
Available on crate feature
NSFileManager
only.Provided Methods§
unsafe fn fileManager_shouldCopyItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate feature
NSString
only.unsafe fn fileManager_shouldCopyItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate feature
NSURL
only.unsafe fn fileManager_shouldProceedAfterError_copyingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate features
NSError
and NSString
only.unsafe fn fileManager_shouldProceedAfterError_copyingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate features
NSError
and NSURL
only.unsafe fn fileManager_shouldMoveItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate feature
NSString
only.unsafe fn fileManager_shouldMoveItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate feature
NSURL
only.unsafe fn fileManager_shouldProceedAfterError_movingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate features
NSError
and NSString
only.unsafe fn fileManager_shouldProceedAfterError_movingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate features
NSError
and NSURL
only.unsafe fn fileManager_shouldLinkItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate feature
NSString
only.unsafe fn fileManager_shouldLinkItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate feature
NSURL
only.unsafe fn fileManager_shouldProceedAfterError_linkingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString ) -> bool
Available on crate features
NSError
and NSString
only.unsafe fn fileManager_shouldProceedAfterError_linkingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL ) -> bool
Available on crate features
NSError
and NSURL
only.unsafe fn fileManager_shouldRemoveItemAtPath( &self, file_manager: &NSFileManager, path: &NSString ) -> bool
Available on crate feature
NSString
only.unsafe fn fileManager_shouldRemoveItemAtURL( &self, file_manager: &NSFileManager, url: &NSURL ) -> bool
Available on crate feature
NSURL
only.unsafe fn fileManager_shouldProceedAfterError_removingItemAtPath( &self, file_manager: &NSFileManager, error: &NSError, path: &NSString ) -> bool
Available on crate features
NSError
and NSString
only.unsafe fn fileManager_shouldProceedAfterError_removingItemAtURL( &self, file_manager: &NSFileManager, error: &NSError, url: &NSURL ) -> bool
Available on crate features
NSError
and NSURL
only.