pub trait EncodeArguments {
type Encs: AsRef<[Encoding]>;
// Required method
fn encodings() -> Self::Encs;
}
Expand description
Types that represent a group of arguments, where each has an Objective-C type encoding.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.