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_voidTrait 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 more