pub trait INSMutableCopying: INSObject {
type Output: INSObject;
// Provided method
fn mutable_copy(&self) -> Id<Self::Output> { ... }
}
Required Associated Types§
Provided Methods§
fn mutable_copy(&self) -> Id<Self::Output>
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.