use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct WKSecurityOrigin;
unsafe impl ClassType for WKSecurityOrigin {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
unsafe impl NSObjectProtocol for WKSecurityOrigin {}
extern_methods!(
unsafe impl WKSecurityOrigin {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[method_id(@__retain_semantics Other protocol)]
pub unsafe fn protocol(&self) -> Retained<NSString>;
#[method_id(@__retain_semantics Other host)]
pub unsafe fn host(&self) -> Retained<NSString>;
#[method(port)]
pub unsafe fn port(&self) -> NSInteger;
}
);
extern_methods!(
unsafe impl WKSecurityOrigin {
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Retained<Self>;
}
);