objc2_web_kit/generated/
WebResource.rs1use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5use objc2_foundation::*;
6
7use crate::*;
8
9extern_class!(
10 #[unsafe(super(NSObject))]
15 #[derive(Debug, PartialEq, Eq, Hash)]
16 pub struct WebResource;
17);
18
19unsafe impl NSCoding for WebResource {}
20
21unsafe impl NSCopying for WebResource {}
22
23unsafe impl CopyingHelper for WebResource {
24 type Result = Self;
25}
26
27unsafe impl NSObjectProtocol for WebResource {}
28
29impl WebResource {
30 extern_methods!(
31 #[unsafe(method(initWithData:URL:MIMEType:textEncodingName:frameName:))]
45 #[unsafe(method_family = init)]
46 pub unsafe fn initWithData_URL_MIMEType_textEncodingName_frameName(
47 this: Allocated<Self>,
48 data: Option<&NSData>,
49 url: Option<&NSURL>,
50 mime_type: Option<&NSString>,
51 text_encoding_name: Option<&NSString>,
52 frame_name: Option<&NSString>,
53 ) -> Option<Retained<Self>>;
54
55 #[unsafe(method(data))]
57 #[unsafe(method_family = none)]
58 pub unsafe fn data(&self) -> Retained<NSData>;
59
60 #[unsafe(method(URL))]
62 #[unsafe(method_family = none)]
63 pub unsafe fn URL(&self) -> Option<Retained<NSURL>>;
64
65 #[unsafe(method(MIMEType))]
67 #[unsafe(method_family = none)]
68 pub unsafe fn MIMEType(&self) -> Retained<NSString>;
69
70 #[unsafe(method(textEncodingName))]
72 #[unsafe(method_family = none)]
73 pub unsafe fn textEncodingName(&self) -> Retained<NSString>;
74
75 #[unsafe(method(frameName))]
77 #[unsafe(method_family = none)]
78 pub unsafe fn frameName(&self) -> Retained<NSString>;
79 );
80}
81
82impl WebResource {
84 extern_methods!(
85 #[unsafe(method(init))]
86 #[unsafe(method_family = init)]
87 pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
88
89 #[unsafe(method(new))]
90 #[unsafe(method_family = new)]
91 pub unsafe fn new() -> Retained<Self>;
92 );
93}