rust_macios/foundation/
ns_index_set.rs

1use crate::{object, objective_c_runtime::{
2    macros::{interface_impl},
3    traits::PNSObject,
4}};
5
6object! {
7    /// An immutable collection of unique integer values that represent indexes in another collection.
8    unsafe pub struct NSIndexSet;
9}
10
11#[interface_impl(NSObject)]
12impl NSIndexSet {}