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
16unsafe impl NSCoding for MPMediaQuerySection {}
17
18unsafe impl NSCopying for MPMediaQuerySection {}
19
20unsafe impl CopyingHelper for MPMediaQuerySection {
21 type Result = Self;
22}
23
24unsafe impl NSObjectProtocol for MPMediaQuerySection {}
25
26unsafe impl NSSecureCoding for MPMediaQuerySection {}
27
28impl MPMediaQuerySection {
29 extern_methods!(
30 #[unsafe(method(title))]
31 #[unsafe(method_family = none)]
32 pub unsafe fn title(&self) -> Retained<NSString>;
33
34 #[unsafe(method(range))]
35 #[unsafe(method_family = none)]
36 pub unsafe fn range(&self) -> NSRange;
37 );
38}
39
40impl MPMediaQuerySection {
42 extern_methods!(
43 #[unsafe(method(init))]
44 #[unsafe(method_family = init)]
45 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
46
47 #[unsafe(method(new))]
48 #[unsafe(method_family = new)]
49 pub unsafe fn new() -> Retained<Self>;
50 );
51}