#![doc = include_str!("../examples/browser.rs")]
#![recursion_limit = "512"]
#![allow(non_snake_case)]
#![no_std]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc(html_root_url = "https://docs.rs/objc2-web-kit/0.2.2")]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
mod generated;
#[allow(unused_imports, unreachable_pub)]
pub use self::generated::*;
use objc2::extern_methods;
extern_methods!(
#[cfg(feature = "WKNavigationAction")]
unsafe impl WKNavigationAction {
#[cfg(feature = "WKFrameInfo")]
#[method_id(@__retain_semantics Other sourceFrame)]
pub unsafe fn sourceFrame(&self) -> Option<objc2::rc::Retained<WKFrameInfo>>;
}
);