#[repr(C)]pub struct MethodDescription {
pub sel: Sel,
pub types: *const c_char,
}Expand description
Objective-C method description (for protocol methods).
Fields§
§sel: SelThe selector for this method, or null if not found.
types: *const c_charThe type encoding string, or null if not found.
Trait Implementations§
Source§impl Clone for MethodDescription
impl Clone for MethodDescription
Source§fn clone(&self) -> MethodDescription
fn clone(&self) -> MethodDescription
Returns a duplicate 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 MethodDescription
impl Debug for MethodDescription
impl Copy for MethodDescription
Auto Trait Implementations§
impl Freeze for MethodDescription
impl RefUnwindSafe for MethodDescription
impl !Send for MethodDescription
impl !Sync for MethodDescription
impl Unpin for MethodDescription
impl UnwindSafe for MethodDescription
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