Struct napi_sys::napi_property_descriptor
source · #[repr(C)]pub struct napi_property_descriptor {
pub utf8name: *const c_char,
pub name: napi_value,
pub method: napi_callback,
pub getter: napi_callback,
pub setter: napi_callback,
pub value: napi_value,
pub attributes: napi_property_attributes,
pub data: *mut c_void,
}
Fields§
§utf8name: *const c_char
§name: napi_value
§method: napi_callback
§getter: napi_callback
§setter: napi_callback
§value: napi_value
§attributes: napi_property_attributes
§data: *mut c_void
Trait Implementations§
source§impl Clone for napi_property_descriptor
impl Clone for napi_property_descriptor
source§fn clone(&self) -> napi_property_descriptor
fn clone(&self) -> napi_property_descriptor
Returns a copy 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 napi_property_descriptor
impl Debug for napi_property_descriptor
impl Copy for napi_property_descriptor
Auto Trait Implementations§
impl Freeze for napi_property_descriptor
impl RefUnwindSafe for napi_property_descriptor
impl !Send for napi_property_descriptor
impl !Sync for napi_property_descriptor
impl Unpin for napi_property_descriptor
impl UnwindSafe for napi_property_descriptor
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