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