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_selector
The name of the method.
types: *const c_char
The 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 moresource§impl Debug for objc_method_description
impl Debug for objc_method_description
impl Copy for objc_method_description
Auto Trait Implementations§
impl Freeze for objc_method_description
impl !RefUnwindSafe for objc_method_description
impl !Send for objc_method_description
impl !Sync for objc_method_description
impl Unpin for objc_method_description
impl !UnwindSafe for objc_method_description
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