Skip to main content

UIVideoEditorControllerDelegate

Trait UIVideoEditorControllerDelegate 

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

Provided Methods§

Source

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

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

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

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

Available on crate features UINavigationController and UIResponder and UIViewController only.

Trait Implementations§

Source§

impl<T> ImplementedBy<T> for dyn UIVideoEditorControllerDelegate

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> UIVideoEditorControllerDelegate for ProtocolObject<T>

Implementors§