objc2_web_kit/generated/
WebResource.rs

1//! This file has been automatically generated by `objc2`'s `header-translator`.
2//! DO NOT EDIT
3use core::ptr::NonNull;
4use objc2::__framework_prelude::*;
5use objc2_foundation::*;
6
7use crate::*;
8
9extern_class!(
10    /// A WebResource represents a fully downloaded URL.
11    /// It includes the data of the resource as well as the metadata associated with the resource.
12    ///
13    /// See also [Apple's documentation](https://developer.apple.com/documentation/webkit/webresource?language=objc)
14    #[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        /// The initializer for WebResource.
32        ///
33        /// Parameter `data`: The data of the resource.
34        ///
35        /// Parameter `URL`: The URL of the resource.
36        ///
37        /// Parameter `MIMEType`: The MIME type of the resource.
38        ///
39        /// Parameter `textEncodingName`: The text encoding name of the resource (can be nil).
40        ///
41        /// Parameter `frameName`: The frame name of the resource if the resource represents the contents of an entire HTML frame (can be nil).
42        ///
43        /// Returns: An initialized WebResource.
44        #[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        /// The data of the resource.
56        #[unsafe(method(data))]
57        #[unsafe(method_family = none)]
58        pub unsafe fn data(&self) -> Retained<NSData>;
59
60        /// The URL of the resource.
61        #[unsafe(method(URL))]
62        #[unsafe(method_family = none)]
63        pub unsafe fn URL(&self) -> Option<Retained<NSURL>>;
64
65        /// The MIME type of the resource.
66        #[unsafe(method(MIMEType))]
67        #[unsafe(method_family = none)]
68        pub unsafe fn MIMEType(&self) -> Retained<NSString>;
69
70        /// The text encoding name of the resource (can be nil).
71        #[unsafe(method(textEncodingName))]
72        #[unsafe(method_family = none)]
73        pub unsafe fn textEncodingName(&self) -> Retained<NSString>;
74
75        /// The frame name of the resource if the resource represents the contents of an entire HTML frame (can be nil).
76        #[unsafe(method(frameName))]
77        #[unsafe(method_family = none)]
78        pub unsafe fn frameName(&self) -> Retained<NSString>;
79    );
80}
81
82/// Methods declared on superclass `NSObject`.
83impl 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}