Trait UIVideoEditorControllerDelegate

Source
pub unsafe trait UIVideoEditorControllerDelegate: NSObjectProtocol + MainThreadOnly {
    // 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.
Expand description

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. 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 UIVideoEditorControllerDelegate

Implementations on Foreign Types§

Source§

impl<T> UIVideoEditorControllerDelegate for ProtocolObject<T>

Implementors§