Struct objc_sys::objc_super [−][src]
#[repr(C)]pub struct objc_super {
pub receiver: *mut objc_object,
pub super_class: *const objc_class,
}Expand description
Specifies data used when sending messages to superclasses.
Fields
receiver: *mut objc_objectThe object / instance to send a message to.
super_class: *const objc_classThe particular superclass of the instance to message.
Named class in older Objective-C versions.
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for objc_super
impl !Send for objc_super
impl !Sync for objc_super
impl Unpin for objc_super
impl !UnwindSafe for objc_super
Blanket Implementations
Mutably borrows from an owned value. Read more