pub unsafe trait NSMutableCopying: Message {
    type Output: Message;

    fn mutable_copy(&self) -> Id<Self::Output, Owned> { ... }
}
Expand description

TODO

Note that the mutableCopy selector must return an owned object!

Required Associated Types

Provided Methods

Implementors