Trait objc2::declare::MethodImplementation
source · pub trait MethodImplementation: Sealed {
type Callee: RefEncode + ?Sized;
type Ret: Encode;
type Args: EncodeArguments;
}
Expand description
Types that can be used as the implementation of an Objective-C method.
This is a sealed trait that is implemented for a lot of extern "C"
function pointer types.
Required Associated Types§
sourcetype Args: EncodeArguments
type Args: EncodeArguments
The argument types of the method.