Struct objc_sys::objc_super
source · #[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§
source§impl Clone for objc_super
impl Clone for objc_super
source§fn clone(&self) -> objc_super
fn clone(&self) -> objc_super
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more