Types that represent a group of arguments, where each has an Objective-C type encoding.
| 200 | /// Types that represent a group of arguments, where each has an Objective-C |
| 201 | /// type encoding. |
| 202 | pub 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 | |
| 210 | macro_rules! count_idents { |
| 211 | () => (0); |
nothing calls this directly
no outgoing calls
no test coverage detected