#[repr(C)]pub struct AMWorkflowController { /* private fields */ }
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate features
Automator
and Automator_AMWorkflowController
only.Implementations§
Source§impl AMWorkflowController
impl AMWorkflowController
pub unsafe fn workflow(&self) -> Option<Id<AMWorkflow>>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate feature
Automator_AMWorkflow
only.pub unsafe fn setWorkflow(&self, workflow: Option<&AMWorkflow>)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate feature
Automator_AMWorkflow
only.pub unsafe fn workflowView(&self) -> Option<Id<AMWorkflowView>>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate feature
Automator_AMWorkflowView
only.pub unsafe fn setWorkflowView(&self, workflow_view: Option<&AMWorkflowView>)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate feature
Automator_AMWorkflowView
only.pub unsafe fn delegate( &self, ) -> Option<Id<ProtocolObject<dyn AMWorkflowControllerDelegate>>>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn setDelegate( &self, delegate: Option<&ProtocolObject<dyn AMWorkflowControllerDelegate>>, )
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn canRun(&self) -> bool
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn isRunning(&self) -> bool
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn isPaused(&self) -> bool
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn run(&self, sender: &AnyObject)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn stop(&self, sender: &AnyObject)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn pause(&self, sender: &AnyObject)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn step(&self, sender: &AnyObject)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn reset(&self, sender: &AnyObject)
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Source§impl AMWorkflowController
Methods declared on superclass NSController
impl AMWorkflowController
Methods declared on superclass NSController
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
pub unsafe fn initWithCoder( this: Allocated<Self>, coder: &NSCoder, ) -> Option<Id<Self>>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Available on crate feature
Foundation_NSCoder
only.Source§impl AMWorkflowController
Methods declared on superclass NSObject
impl AMWorkflowController
Methods declared on superclass NSObject
pub unsafe fn new(mtm: MainThreadMarker) -> Id<Self>
👎Deprecated:
icrate::Automator
has been moved to objc2-automator
Methods from Deref<Target = NSController>§
pub unsafe fn objectDidBeginEditing( &self, editor: &ProtocolObject<dyn NSEditor>, )
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.pub unsafe fn objectDidEndEditing(&self, editor: &ProtocolObject<dyn NSEditor>)
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.pub unsafe fn discardEditing(&self)
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.pub unsafe fn commitEditing(&self) -> bool
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.pub unsafe fn commitEditingWithDelegate_didCommitSelector_contextInfo( &self, delegate: Option<&AnyObject>, did_commit_selector: Option<Sel>, context_info: *mut c_void, )
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.pub unsafe fn isEditing(&self) -> bool
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate features
AppKit
and AppKit_NSController
only.Methods from Deref<Target = NSObject>§
Sourcepub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
Available on crate feature AuthenticationServices
only.
pub fn doesNotRecognizeSelector(&self, sel: Sel) -> !
AuthenticationServices
only.Handle messages the object doesn’t recognize.
See Apple’s documentation for details.
Methods from Deref<Target = AnyObject>§
Sourcepub fn class(&self) -> &'static AnyClass
pub fn class(&self) -> &'static AnyClass
Dynamically find the class of this object.
§Example
Check that an instance of NSObject
has the precise class NSObject
.
use objc2::ClassType;
use objc2::runtime::NSObject;
let obj = NSObject::new();
assert_eq!(obj.class(), NSObject::class());
Sourcepub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load
instead.
pub unsafe fn get_ivar<T>(&self, name: &str) -> &Twhere
T: Encode,
Ivar::load
instead.Use Ivar::load
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Sourcepub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
👎Deprecated: this is difficult to use correctly, use Ivar::load_mut
instead.
pub unsafe fn get_mut_ivar<T>(&mut self, name: &str) -> &mut Twhere
T: Encode,
Ivar::load_mut
instead.Use Ivar::load_mut
instead.
§Safety
The object must have an instance variable with the given name, and it
must be of type T
.
See Ivar::load_ptr
for details surrounding this.
Trait Implementations§
Source§impl AsMut<AnyObject> for AMWorkflowController
impl AsMut<AnyObject> for AMWorkflowController
Source§impl AsMut<NSController> for AMWorkflowController
impl AsMut<NSController> for AMWorkflowController
Source§fn as_mut(&mut self) -> &mut NSController
fn as_mut(&mut self) -> &mut NSController
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsMut<NSObject> for AMWorkflowController
impl AsMut<NSObject> for AMWorkflowController
Source§impl AsRef<AnyObject> for AMWorkflowController
impl AsRef<AnyObject> for AMWorkflowController
Source§impl AsRef<NSController> for AMWorkflowController
impl AsRef<NSController> for AMWorkflowController
Source§fn as_ref(&self) -> &NSController
fn as_ref(&self) -> &NSController
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl AsRef<NSObject> for AMWorkflowController
impl AsRef<NSObject> for AMWorkflowController
Source§impl Borrow<AnyObject> for AMWorkflowController
impl Borrow<AnyObject> for AMWorkflowController
Source§impl Borrow<NSController> for AMWorkflowController
impl Borrow<NSController> for AMWorkflowController
Source§fn borrow(&self) -> &NSController
fn borrow(&self) -> &NSController
Immutably borrows from an owned value. Read more
Source§impl Borrow<NSObject> for AMWorkflowController
impl Borrow<NSObject> for AMWorkflowController
Source§impl BorrowMut<AnyObject> for AMWorkflowController
impl BorrowMut<AnyObject> for AMWorkflowController
Source§fn borrow_mut(&mut self) -> &mut AnyObject
fn borrow_mut(&mut self) -> &mut AnyObject
Mutably borrows from an owned value. Read more
Source§impl BorrowMut<NSController> for AMWorkflowController
impl BorrowMut<NSController> for AMWorkflowController
Source§fn borrow_mut(&mut self) -> &mut NSController
fn borrow_mut(&mut self) -> &mut NSController
Mutably borrows from an owned value. Read more
Source§impl BorrowMut<NSObject> for AMWorkflowController
impl BorrowMut<NSObject> for AMWorkflowController
Source§fn borrow_mut(&mut self) -> &mut NSObject
fn borrow_mut(&mut self) -> &mut NSObject
Mutably borrows from an owned value. Read more
Source§impl ClassType for AMWorkflowController
impl ClassType for AMWorkflowController
Source§const NAME: &'static str = "AMWorkflowController"
const NAME: &'static str = "AMWorkflowController"
The name of the Objective-C class that this type represents. Read more
Source§type Super = NSController
type Super = NSController
The superclass of this class. Read more
Source§type Mutability = MainThreadOnly
type Mutability = MainThreadOnly
Whether the type is mutable or immutable. Read more
Source§fn class() -> &'static AnyClass
fn class() -> &'static AnyClass
Get a reference to the Objective-C class that this type represents. Read more
Source§fn as_super_mut(&mut self) -> &mut Self::Super
fn as_super_mut(&mut self) -> &mut Self::Super
Get a mutable reference to the superclass.
Source§impl Debug for AMWorkflowController
impl Debug for AMWorkflowController
Source§impl Deref for AMWorkflowController
impl Deref for AMWorkflowController
Source§impl DerefMut for AMWorkflowController
impl DerefMut for AMWorkflowController
Source§impl Hash for AMWorkflowController
impl Hash for AMWorkflowController
Source§impl NSCoding for AMWorkflowController
impl NSCoding for AMWorkflowController
Source§unsafe fn encodeWithCoder(&self, coder: &NSCoder)
unsafe fn encodeWithCoder(&self, coder: &NSCoder)
👎Deprecated:
icrate::Foundation
has been moved to objc2-foundation
Available on crate features
Foundation
and Foundation_NSCoder
only.Source§impl NSEditor for AMWorkflowController
impl NSEditor for AMWorkflowController
Source§unsafe fn discardEditing(&self)
unsafe fn discardEditing(&self)
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate feature
AppKit
only.Source§unsafe fn commitEditing(&self) -> bool
unsafe fn commitEditing(&self) -> bool
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate feature
AppKit
only.Source§impl NSEditorRegistration for AMWorkflowController
impl NSEditorRegistration for AMWorkflowController
Source§unsafe fn objectDidBeginEditing(&self, editor: &ProtocolObject<dyn NSEditor>)
unsafe fn objectDidBeginEditing(&self, editor: &ProtocolObject<dyn NSEditor>)
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate feature
AppKit
only.Source§unsafe fn objectDidEndEditing(&self, editor: &ProtocolObject<dyn NSEditor>)
unsafe fn objectDidEndEditing(&self, editor: &ProtocolObject<dyn NSEditor>)
👎Deprecated:
icrate::AppKit
has been moved to objc2-app-kit
Available on crate feature
AppKit
only.Source§impl NSObjectProtocol for AMWorkflowController
impl NSObjectProtocol for AMWorkflowController
Source§fn isEqual(&self, other: &AnyObject) -> bool
fn isEqual(&self, other: &AnyObject) -> bool
Check whether the object is equal to an arbitrary other object. Read more
Source§fn hash(&self) -> usize
fn hash(&self) -> usize
An integer that can be used as a table address in a hash table
structure. Read more
Source§fn isKindOfClass(&self, cls: &AnyClass) -> bool
fn isKindOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of the class, or one of its
subclasses. Read more
Source§fn is_kind_of<T>(&self) -> bool
fn is_kind_of<T>(&self) -> bool
Check if the object is an instance of the class type, or one of its
subclasses. Read more
Source§fn isMemberOfClass(&self, cls: &AnyClass) -> bool
fn isMemberOfClass(&self, cls: &AnyClass) -> bool
Check if the object is an instance of a specific class, without
checking subclasses. Read more
Source§fn respondsToSelector(&self, aSelector: Sel) -> bool
fn respondsToSelector(&self, aSelector: Sel) -> bool
Check whether the object implements or inherits a method with the
given selector. Read more
Source§fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
fn conformsToProtocol(&self, aProtocol: &AnyProtocol) -> bool
Check whether the object conforms to a given protocol. Read more
Source§fn debugDescription(&self) -> Id<NSObject>
fn debugDescription(&self) -> Id<NSObject>
A textual representation of the object to use when debugging. Read more
Source§impl PartialEq for AMWorkflowController
impl PartialEq for AMWorkflowController
Source§impl RefEncode for AMWorkflowController
impl RefEncode for AMWorkflowController
Source§const ENCODING_REF: Encoding = <NSController as ::objc2::RefEncode>::ENCODING_REF
const ENCODING_REF: Encoding = <NSController as ::objc2::RefEncode>::ENCODING_REF
The Objective-C type-encoding for a reference of this type. Read more
impl Eq for AMWorkflowController
impl Message for AMWorkflowController
impl StructuralPartialEq for AMWorkflowController
Auto Trait Implementations§
impl !Freeze for AMWorkflowController
impl !RefUnwindSafe for AMWorkflowController
impl !Send for AMWorkflowController
impl !Sync for AMWorkflowController
impl !Unpin for AMWorkflowController
impl !UnwindSafe for AMWorkflowController
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more