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_object
The object / instance to send a message to.
super_class: *const objc_class
The particular superclass of the instance to message.
Named class
in older Objective-C versions.
Trait Implementations
sourceimpl Clone for objc_super
impl Clone for objc_super
sourcefn clone(&self) -> objc_super
fn clone(&self) -> objc_super
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for objc_super
impl Debug for objc_super
impl Copy for objc_super
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more