Trait objc::declare::MethodImplementation
source · pub trait MethodImplementation {
type Callee: Message;
type Ret: Encode;
type Args: EncodeArguments;
// Required method
fn imp(self) -> Imp;
}
Expand description
Types that can be used as the implementation of an Objective-C method.
Required Associated Types§
sourcetype Args: EncodeArguments
type Args: EncodeArguments
The argument types of the method.