#[repr(C)]pub struct ArkWeb_ProxyObject {
pub objName: *const c_char,
pub methodList: *const ArkWeb_ProxyMethod,
pub size: usize,
}Expand description
@brief Defines the javascript proxy registered object.
@since 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.
Trait Implementations§
Source§impl Clone for ArkWeb_ProxyObject
impl Clone for ArkWeb_ProxyObject
Source§fn clone(&self) -> ArkWeb_ProxyObject
fn clone(&self) -> ArkWeb_ProxyObject
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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_ProxyObject
impl Debug for ArkWeb_ProxyObject
impl Copy for ArkWeb_ProxyObject
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