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

    // Provided method
    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§

source

fn mutable_copy(&self) -> Id<Self::Output, Owned>

Implementors§