pub unsafe trait NSFastEnumeration: Message {
    type Item: Message;

    // Provided method
    fn iter_fast(&self) -> NSFastEnumerator<'_, Self>  { ... }
}

Required Associated Types§

Provided Methods§

source

fn iter_fast(&self) -> NSFastEnumerator<'_, Self>

Implementors§