objc2_web_kit/generated/
DOMRGBColor.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::*;
5#[cfg(feature = "objc2-app-kit")]
6#[cfg(target_os = "macos")]
7use objc2_app_kit::*;
8use objc2_foundation::*;
9
10use crate::*;
11
12extern_class!(
13    /// [Apple's documentation](https://developer.apple.com/documentation/webkit/domrgbcolor?language=objc)
14    #[unsafe(super(DOMObject, WebScriptObject, NSObject))]
15    #[derive(Debug, PartialEq, Eq, Hash)]
16    #[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
17    #[deprecated]
18    pub struct DOMRGBColor;
19);
20
21#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
22unsafe impl NSCopying for DOMRGBColor {}
23
24#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
25unsafe impl CopyingHelper for DOMRGBColor {
26    type Result = Self;
27}
28
29#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
30unsafe impl NSObjectProtocol for DOMRGBColor {}
31
32#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
33impl DOMRGBColor {
34    extern_methods!(
35        #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
36        #[deprecated]
37        #[unsafe(method(red))]
38        #[unsafe(method_family = none)]
39        pub unsafe fn red(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
40
41        #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
42        #[deprecated]
43        #[unsafe(method(green))]
44        #[unsafe(method_family = none)]
45        pub unsafe fn green(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
46
47        #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
48        #[deprecated]
49        #[unsafe(method(blue))]
50        #[unsafe(method_family = none)]
51        pub unsafe fn blue(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
52
53        #[cfg(all(feature = "DOMCSSPrimitiveValue", feature = "DOMCSSValue"))]
54        #[deprecated]
55        #[unsafe(method(alpha))]
56        #[unsafe(method_family = none)]
57        pub unsafe fn alpha(&self) -> Option<Retained<DOMCSSPrimitiveValue>>;
58
59        #[cfg(feature = "objc2-app-kit")]
60        #[cfg(target_os = "macos")]
61        #[unsafe(method(color))]
62        #[unsafe(method_family = none)]
63        pub unsafe fn color(&self) -> Retained<NSColor>;
64    );
65}
66
67/// Methods declared on superclass `DOMObject`.
68#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
69impl DOMRGBColor {
70    extern_methods!(
71        #[deprecated]
72        #[unsafe(method(init))]
73        #[unsafe(method_family = init)]
74        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
75    );
76}
77
78/// Methods declared on superclass `NSObject`.
79#[cfg(all(feature = "DOMObject", feature = "WebScriptObject"))]
80impl DOMRGBColor {
81    extern_methods!(
82        #[unsafe(method(new))]
83        #[unsafe(method_family = new)]
84        pub unsafe fn new() -> Retained<Self>;
85    );
86}