pub trait EncodeArguments {
    type Encs: AsRef<[Encoding]>;

    fn encodings() -> Self::Encs;
}
Expand description

Types that represent a group of arguments, where each has an Objective-C type encoding.

Required Associated Types

The type as which the encodings for Self will be returned.

Required Methods

Returns the Objective-C type encodings for Self.

Implementations on Foreign Types

Implementors