MCPcopy Index your code
hub / github.com/SSheldon/rust-objc / EncodeArguments

Interface EncodeArguments

src/encode.rs:202–208  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

200/// Types that represent a group of arguments, where each has an Objective-C
201/// type encoding.
202pub trait EncodeArguments {
203 /// The type as which the encodings for Self will be returned.
204 type Encs: AsRef<[Encoding]>;
205
206 /// Returns the Objective-C type encodings for Self.
207 fn encodings() -> Self::Encs;
208}
209
210macro_rules! count_idents {
211 () => (0);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected