pub trait WKScriptMessage: Sized {
    // Required methods
    unsafe fn body(self) -> id;
    unsafe fn frameInfo(self) -> id;
    unsafe fn name(self) -> id;
    unsafe fn webView(self) -> id;
}

Required Methods§

source

unsafe fn body(self) -> id

Safety

All the FFI functions are unsafe.

source

unsafe fn frameInfo(self) -> id

Safety

All the FFI functions are unsafe.

source

unsafe fn name(self) -> id

Safety

All the FFI functions are unsafe.

source

unsafe fn webView(self) -> id

Safety

All the FFI functions are unsafe.

Implementations on Foreign Types§

source§

impl WKScriptMessage for id

source§

unsafe fn body(self) -> id

source§

unsafe fn frameInfo(self) -> id

source§

unsafe fn name(self) -> id

source§

unsafe fn webView(self) -> id

Implementors§