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§
unsafe fn videoEditorController_didSaveEditedVideoToPath( &self, editor: &UIVideoEditorController, edited_video_path: &NSString )
Available on crate features
UINavigationController and UIResponder and UIViewController only.unsafe fn videoEditorController_didFailWithError( &self, editor: &UIVideoEditorController, error: &NSError )
Available on crate features
UINavigationController and UIResponder and UIViewController only.unsafe fn videoEditorControllerDidCancel( &self, editor: &UIVideoEditorController )
Available on crate features
UINavigationController and UIResponder and UIViewController only.