#[repr(C)]pub struct js_delegate_callbacks_t {
pub version: c_int,
pub get: js_delegate_get_cb,
pub has: js_delegate_has_cb,
pub set: js_delegate_set_cb,
pub delete_property: js_delegate_delete_property_cb,
pub own_keys: js_delegate_own_keys_cb,
}Fields§
§version: c_int§get: js_delegate_get_cb§has: js_delegate_has_cb§set: js_delegate_set_cb§delete_property: js_delegate_delete_property_cb§own_keys: js_delegate_own_keys_cbTrait Implementations§
Source§impl Clone for js_delegate_callbacks_t
impl Clone for js_delegate_callbacks_t
Source§fn clone(&self) -> js_delegate_callbacks_t
fn clone(&self) -> js_delegate_callbacks_t
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 js_delegate_callbacks_t
impl Debug for js_delegate_callbacks_t
impl Copy for js_delegate_callbacks_t
Auto Trait Implementations§
impl Freeze for js_delegate_callbacks_t
impl RefUnwindSafe for js_delegate_callbacks_t
impl Send for js_delegate_callbacks_t
impl Sync for js_delegate_callbacks_t
impl Unpin for js_delegate_callbacks_t
impl UnwindSafe for js_delegate_callbacks_t
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