#[repr(C)]pub struct ArkWeb_ProxyMethod {
pub methodName: *const c_char,
pub callback: ArkWeb_OnJavaScriptProxyCallback,
pub userData: *mut c_void,
}Available on crate features
api-11 and api-12 only.Expand description
Defines the javascript proxy registered method object.
Available since API-level: 12
Fields§
§methodName: *const c_charThe method of the application side JavaScript object participating in the registration.
callback: ArkWeb_OnJavaScriptProxyCallbackThe callback function registered by developer is called back when HTML side uses.
userData: *mut c_voidThe user data to set.
Trait Implementations§
Source§impl Clone for ArkWeb_ProxyMethod
impl Clone for ArkWeb_ProxyMethod
Source§fn clone(&self) -> ArkWeb_ProxyMethod
fn clone(&self) -> ArkWeb_ProxyMethod
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ArkWeb_ProxyMethod
impl Debug for ArkWeb_ProxyMethod
impl Copy for ArkWeb_ProxyMethod
Auto Trait Implementations§
impl Freeze for ArkWeb_ProxyMethod
impl RefUnwindSafe for ArkWeb_ProxyMethod
impl !Send for ArkWeb_ProxyMethod
impl !Sync for ArkWeb_ProxyMethod
impl Unpin for ArkWeb_ProxyMethod
impl UnsafeUnpin for ArkWeb_ProxyMethod
impl UnwindSafe for ArkWeb_ProxyMethod
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more