#[repr(C)]pub struct ArkWeb_ProxyObjectWithResult {
pub objName: *const c_char,
pub methodList: *const ArkWeb_ProxyMethodWithResult,
pub size: usize,
}Available on crate features
api-11 and api-12 and api-18 only.Expand description
Defines the JavaScript proxy registered object with methodList that has a return value.
Available since API-level: 18
Fields§
§objName: *const c_charThe name of the registered object.
methodList: *const ArkWeb_ProxyMethodWithResultThe JavaScript proxy registered method object list with a callback function that has a return value
size: usizeThe size of the methodList.
Auto Trait Implementations§
impl Freeze for ArkWeb_ProxyObjectWithResult
impl RefUnwindSafe for ArkWeb_ProxyObjectWithResult
impl !Send for ArkWeb_ProxyObjectWithResult
impl !Sync for ArkWeb_ProxyObjectWithResult
impl Unpin for ArkWeb_ProxyObjectWithResult
impl UnsafeUnpin for ArkWeb_ProxyObjectWithResult
impl UnwindSafe for ArkWeb_ProxyObjectWithResult
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