#[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_charname: napi_valuemethod: napi_callbackgetter: napi_callbacksetter: napi_callbackvalue: napi_valueattributes: napi_property_attributesdata: *mut c_voidTrait Implementations
Auto Trait Implementations
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
Mutably borrows from an owned value. Read more
