objc2_ar_kit/generated/
ARTrackedRaycast.rs1use core::ffi::*;
4use core::ptr::NonNull;
5#[cfg(feature = "objc2")]
6use objc2::__framework_prelude::*;
7
8use crate::*;
9
10#[cfg(feature = "objc2")]
11extern_class!(
12 #[unsafe(super(NSObject))]
16 #[derive(Debug, PartialEq, Eq, Hash)]
17 #[cfg(feature = "objc2")]
18 pub struct ARTrackedRaycast;
19);
20
21#[cfg(feature = "objc2")]
22extern_conformance!(
23 unsafe impl NSObjectProtocol for ARTrackedRaycast {}
24);
25
26#[cfg(feature = "objc2")]
27impl ARTrackedRaycast {
28 extern_methods!(
29 #[unsafe(method(stopTracking))]
34 #[unsafe(method_family = none)]
35 pub unsafe fn stopTracking(&self);
36
37 #[unsafe(method(init))]
38 #[unsafe(method_family = init)]
39 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
40
41 #[unsafe(method(new))]
42 #[unsafe(method_family = new)]
43 pub unsafe fn new(&self) -> Retained<Self>;
44 );
45}
46
47#[cfg(feature = "objc2")]
49impl ARTrackedRaycast {
50 extern_methods!(
51 #[unsafe(method(new))]
52 #[unsafe(method_family = new)]
53 pub unsafe fn new_class() -> Retained<Self>;
54 );
55}