#[repr(C)]
pub struct PropertyDescriptor { pub _bitfield_align_1: [u8; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 2]>, pub getter_: *mut JSObject, pub setter_: *mut JSObject, pub value_: Value, }
Expand description

A structure that represents a property on an object, or the absence of a property. Use {,Mutable}Handle to interact with instances of this structure rather than interacting directly with member fields.

Fields§

§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 2]>§getter_: *mut JSObject§setter_: *mut JSObject§value_: Value

Implementations§

source§

impl PropertyDescriptor

source

pub fn hasConfigurable_(&self) -> bool

source

pub fn set_hasConfigurable_(&mut self, val: bool)

source

pub fn configurable_(&self) -> bool

source

pub fn set_configurable_(&mut self, val: bool)

source

pub fn hasEnumerable_(&self) -> bool

source

pub fn set_hasEnumerable_(&mut self, val: bool)

source

pub fn enumerable_(&self) -> bool

source

pub fn set_enumerable_(&mut self, val: bool)

source

pub fn hasWritable_(&self) -> bool

source

pub fn set_hasWritable_(&mut self, val: bool)

source

pub fn writable_(&self) -> bool

source

pub fn set_writable_(&mut self, val: bool)

source

pub fn hasValue_(&self) -> bool

source

pub fn set_hasValue_(&mut self, val: bool)

source

pub fn hasGetter_(&self) -> bool

source

pub fn set_hasGetter_(&mut self, val: bool)

source

pub fn hasSetter_(&self) -> bool

source

pub fn set_hasSetter_(&mut self, val: bool)

source

pub fn resolving_(&self) -> bool

source

pub fn set_resolving_(&mut self, val: bool)

source

pub fn new_bitfield_1( hasConfigurable_: bool, configurable_: bool, hasEnumerable_: bool, enumerable_: bool, hasWritable_: bool, writable_: bool, hasValue_: bool, hasGetter_: bool, hasSetter_: bool, resolving_: bool ) -> __BindgenBitfieldUnit<[u8; 2]>

Trait Implementations§

source§

impl Clone for PropertyDescriptor

source§

fn clone(&self) -> PropertyDescriptor

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PropertyDescriptor

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for PropertyDescriptor

source§

fn default() -> PropertyDescriptor

Returns the “default value” for a type. Read more
source§

impl GCMethods for PropertyDescriptor

source§

unsafe fn initial() -> PropertyDescriptor

Create a default value
source§

unsafe fn post_barrier( _: *mut PropertyDescriptor, _: PropertyDescriptor, _: PropertyDescriptor )

Place a post-write barrier
source§

impl PartialEq<PropertyDescriptor> for PropertyDescriptor

source§

fn eq(&self, other: &PropertyDescriptor) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl RootKind for PropertyDescriptor

source§

fn rootKind() -> RootKind

Returns the rooting kind for Self.
source§

impl Copy for PropertyDescriptor

source§

impl StructuralPartialEq for PropertyDescriptor

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.