Struct objc_sys::objc_method_description
source · #[repr(C)]pub struct objc_method_description {
pub name: *const objc_selector,
pub types: *const c_char,
}Expand description
Describes an Objective-C method.
Fields§
§name: *const objc_selectorThe name of the method.
types: *const c_charThe types of the method arguments.
Trait Implementations§
source§impl Clone for objc_method_description
impl Clone for objc_method_description
source§fn clone(&self) -> objc_method_description
fn clone(&self) -> objc_method_description
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