objc2-web-kit 0.2.2

Bindings to the WebKit framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

pub type DOMTimeStamp = c_ulonglong;

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    #[cfg(feature = "WebScriptObject")]
    #[deprecated]
    pub struct DOMObject;

    #[cfg(feature = "WebScriptObject")]
    unsafe impl ClassType for DOMObject {
        #[inherits(NSObject)]
        type Super = WebScriptObject;
        type Mutability = InteriorMutable;
    }
);

#[cfg(feature = "WebScriptObject")]
unsafe impl NSCopying for DOMObject {}

#[cfg(feature = "WebScriptObject")]
unsafe impl NSObjectProtocol for DOMObject {}

extern_methods!(
    #[cfg(feature = "WebScriptObject")]
    unsafe impl DOMObject {
        #[deprecated]
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    #[cfg(feature = "WebScriptObject")]
    unsafe impl DOMObject {
        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Retained<Self>;
    }
);

extern_methods!(
    /// DOMLinkStyle
    #[cfg(feature = "WebScriptObject")]
    unsafe impl DOMObject {
        #[cfg(feature = "DOMStyleSheet")]
        #[method_id(@__retain_semantics Other sheet)]
        pub unsafe fn sheet(&self) -> Option<Retained<DOMStyleSheet>>;
    }
);