Trait objc::EncodeArguments [] [src]

pub trait EncodeArguments {
    type Encs: AsRef<[Encoding]>;
    fn encodings() -> Self::Encs;
}

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

Associated Types

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

Required Methods

Returns the Objective-C type encodings for Self.

Implementors