Struct nodex_api::api::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
Performs the conversion.
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