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

    fn mutable_copy(&self) -> Id<Self::Output, Owned>Notable traits for Id<I, Owned>impl<I: Iterator + ?Sized> Iterator for Id<I, Owned>    type Item = I::Item;impl<T: Read + ?Sized> Read for Id<T, Owned>impl<T: Write + ?Sized> Write for Id<T, Owned>impl<T: Future + Unpin + ?Sized> Future for Id<T, Owned>    type Output = T::Output; { ... }
}
Available on crate feature foundation only.
Expand description

TODO

Note that the mutableCopy selector must return an owned object!

Required Associated Types

Provided Methods

Implementors