#[repr(u32)]pub enum napi_property_attributes {
napi_default = 0,
napi_writable = 1,
napi_enumerable = 2,
napi_configurable = 4,
napi_static = 1_024,
}Variants§
Trait Implementations§
Source§impl Clone for napi_property_attributes
impl Clone for napi_property_attributes
Source§fn clone(&self) -> napi_property_attributes
fn clone(&self) -> napi_property_attributes
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 napi_property_attributes
impl Debug for napi_property_attributes
Source§impl Hash for napi_property_attributes
impl Hash for napi_property_attributes
Source§impl PartialEq for napi_property_attributes
impl PartialEq for napi_property_attributes
impl Copy for napi_property_attributes
impl Eq for napi_property_attributes
impl StructuralPartialEq for napi_property_attributes
Auto Trait Implementations§
impl Freeze for napi_property_attributes
impl RefUnwindSafe for napi_property_attributes
impl Send for napi_property_attributes
impl Sync for napi_property_attributes
impl Unpin for napi_property_attributes
impl UnwindSafe for napi_property_attributes
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