objc2_vision/generated/
VNHumanBodyRecognizedPoint3D.rs1use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5use objc2_foundation::*;
6
7use crate::*;
8
9extern_class!(
10 #[unsafe(super(VNRecognizedPoint3D, VNPoint3D, NSObject))]
12 #[derive(Debug, PartialEq, Eq, Hash)]
13 #[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
14 pub struct VNHumanBodyRecognizedPoint3D;
15);
16
17#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
18extern_conformance!(
19 unsafe impl NSCoding for VNHumanBodyRecognizedPoint3D {}
20);
21
22#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
23extern_conformance!(
24 unsafe impl NSCopying for VNHumanBodyRecognizedPoint3D {}
25);
26
27#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
28unsafe impl CopyingHelper for VNHumanBodyRecognizedPoint3D {
29 type Result = Self;
30}
31
32#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
33extern_conformance!(
34 unsafe impl NSObjectProtocol for VNHumanBodyRecognizedPoint3D {}
35);
36
37#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
38extern_conformance!(
39 unsafe impl NSSecureCoding for VNHumanBodyRecognizedPoint3D {}
40);
41
42#[cfg(all(feature = "VNGeometry", feature = "VNRecognizedPoint3D"))]
43impl VNHumanBodyRecognizedPoint3D {
44 extern_methods!(
45 #[cfg(feature = "VNTypes")]
46 #[unsafe(method(parentJoint))]
47 #[unsafe(method_family = none)]
48 pub unsafe fn parentJoint(&self) -> Retained<VNHumanBodyPose3DObservationJointName>;
49
50 #[unsafe(method(new))]
51 #[unsafe(method_family = new)]
52 pub unsafe fn new() -> Retained<Self>;
53
54 #[unsafe(method(init))]
55 #[unsafe(method_family = init)]
56 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
57 );
58}