pub unsafe trait AMWorkflowControllerDelegate: NSObjectProtocol {
// Provided methods
unsafe fn workflowControllerWillRun(
&self,
controller: &AMWorkflowController,
)
where Self: Sized + Message { ... }
unsafe fn workflowControllerWillStop(
&self,
controller: &AMWorkflowController,
)
where Self: Sized + Message { ... }
unsafe fn workflowControllerDidRun(&self, controller: &AMWorkflowController)
where Self: Sized + Message { ... }
unsafe fn workflowControllerDidStop(
&self,
controller: &AMWorkflowController,
)
where Self: Sized + Message { ... }
unsafe fn workflowController_willRunAction(
&self,
controller: &AMWorkflowController,
action: &AMAction,
)
where Self: Sized + Message { ... }
unsafe fn workflowController_didRunAction(
&self,
controller: &AMWorkflowController,
action: &AMAction,
)
where Self: Sized + Message { ... }
unsafe fn workflowController_didError(
&self,
controller: &AMWorkflowController,
error: &NSError,
)
where Self: Sized + Message { ... }
}
Available on crate feature
AMWorkflowController
only.Expand description
Provided Methods§
unsafe fn workflowControllerWillRun(&self, controller: &AMWorkflowController)
Available on crate feature
objc2-app-kit
only.unsafe fn workflowControllerWillStop(&self, controller: &AMWorkflowController)
Available on crate feature
objc2-app-kit
only.unsafe fn workflowControllerDidRun(&self, controller: &AMWorkflowController)
Available on crate feature
objc2-app-kit
only.unsafe fn workflowControllerDidStop(&self, controller: &AMWorkflowController)
Available on crate feature
objc2-app-kit
only.unsafe fn workflowController_willRunAction( &self, controller: &AMWorkflowController, action: &AMAction, )
Available on crate features
AMAction
and objc2-app-kit
only.unsafe fn workflowController_didRunAction( &self, controller: &AMWorkflowController, action: &AMAction, )
Available on crate features
AMAction
and objc2-app-kit
only.unsafe fn workflowController_didError( &self, controller: &AMWorkflowController, error: &NSError, )
Available on crate feature
objc2-app-kit
only.