Trait NSFileManagerDelegate

Source
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.
Expand description

Provided Methods§

Source

unsafe fn fileManager_shouldCopyItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate feature NSString only.
Source

unsafe fn fileManager_shouldCopyItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate feature NSURL only.
Source

unsafe fn fileManager_shouldProceedAfterError_copyingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSString only.
Source

unsafe fn fileManager_shouldProceedAfterError_copyingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSURL only.
Source

unsafe fn fileManager_shouldMoveItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate feature NSString only.
Source

unsafe fn fileManager_shouldMoveItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate feature NSURL only.
Source

unsafe fn fileManager_shouldProceedAfterError_movingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSString only.
Source

unsafe fn fileManager_shouldProceedAfterError_movingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSURL only.
Source

unsafe fn fileManager_shouldLinkItemAtPath_toPath( &self, file_manager: &NSFileManager, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate feature NSString only.
Source

unsafe fn fileManager_shouldLinkItemAtURL_toURL( &self, file_manager: &NSFileManager, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate feature NSURL only.
Source

unsafe fn fileManager_shouldProceedAfterError_linkingItemAtPath_toPath( &self, file_manager: &NSFileManager, error: &NSError, src_path: &NSString, dst_path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSString only.
Source

unsafe fn fileManager_shouldProceedAfterError_linkingItemAtURL_toURL( &self, file_manager: &NSFileManager, error: &NSError, src_url: &NSURL, dst_url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSURL only.
Source

unsafe fn fileManager_shouldRemoveItemAtPath( &self, file_manager: &NSFileManager, path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate feature NSString only.
Source

unsafe fn fileManager_shouldRemoveItemAtURL( &self, file_manager: &NSFileManager, url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate feature NSURL only.
Source

unsafe fn fileManager_shouldProceedAfterError_removingItemAtPath( &self, file_manager: &NSFileManager, error: &NSError, path: &NSString, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSString only.
Source

unsafe fn fileManager_shouldProceedAfterError_removingItemAtURL( &self, file_manager: &NSFileManager, error: &NSError, url: &NSURL, ) -> bool
where Self: Sized + Message,

Available on crate features NSError and NSURL only.

Trait Implementations§

Source§

impl ProtocolType for dyn NSFileManagerDelegate

Source§

const NAME: &'static str = "NSFileManagerDelegate"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn NSFileManagerDelegate

Implementations on Foreign Types§

Source§

impl<T> NSFileManagerDelegate for ProtocolObject<T>

Implementors§