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