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