pub unsafe trait UIVideoEditorControllerDelegate: NSObjectProtocol + IsMainThreadOnly {
    // Provided methods
    unsafe fn videoEditorController_didSaveEditedVideoToPath(
        &self,
        editor: &UIVideoEditorController,
        edited_video_path: &NSString
    )
       where Self: Sized + Message { ... }
    unsafe fn videoEditorController_didFailWithError(
        &self,
        editor: &UIVideoEditorController,
        error: &NSError
    )
       where Self: Sized + Message { ... }
    unsafe fn videoEditorControllerDidCancel(
        &self,
        editor: &UIVideoEditorController
    )
       where Self: Sized + Message { ... }
}
Available on crate feature UIVideoEditorController only.

Provided Methods§

source

unsafe fn videoEditorController_didSaveEditedVideoToPath( &self, editor: &UIVideoEditorController, edited_video_path: &NSString )
where Self: Sized + Message,

Available on crate features UINavigationController and UIResponder and UIViewController only.
source

unsafe fn videoEditorController_didFailWithError( &self, editor: &UIVideoEditorController, error: &NSError )
where Self: Sized + Message,

Available on crate features UINavigationController and UIResponder and UIViewController only.
source

unsafe fn videoEditorControllerDidCancel( &self, editor: &UIVideoEditorController )
where Self: Sized + Message,

Available on crate features UINavigationController and UIResponder and UIViewController only.

Trait Implementations§

source§

impl ProtocolType for dyn UIVideoEditorControllerDelegate

source§

const NAME: &'static str = "UIVideoEditorControllerDelegate"

The name of the Objective-C protocol that this type represents.
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 UIVideoEditorControllerDelegate

Implementations on Foreign Types§

source§

impl<T> UIVideoEditorControllerDelegate for ProtocolObject<T>

Implementors§