rust_macios/core_location/
cl_region.rs

1use rust_macios_objective_c_runtime_proc_macros::interface_impl;
2
3use crate::{object, objective_c_runtime::traits::PNSObject};
4
5object! {
6    unsafe pub struct CLRegion;
7}
8
9#[interface_impl(NSObject)]
10impl CLRegion {}