Struct mozjs::jsapi::JS::PropertyDescriptor

source ·
#[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 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 TraceableTrace for PropertyDescriptor

source§

unsafe fn do_trace(&mut self, trc: *mut JSTracer)

Used by TraceableTrace implementer to trace its contents. Corresponds to virtual trace call in a Rooted that inherits from StackRootedTraceableBase (C++).
source§

const VTABLE: RootedVFTable = _

source§

unsafe extern "C" fn trace( this: *mut c_void, trc: *mut JSTracer, _name: *const i8, )

source§

impl Copy for PropertyDescriptor

source§

impl StructuralPartialEq for PropertyDescriptor

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. 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 T
where 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> RootKind for T
where T: TraceableTrace,

§

type Vtable = *const RootedVFTable

source§

const VTABLE: <T as RootKind>::Vtable = _

source§

const KIND: RootKind = JS::RootKind::Traceable

source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
source§

impl<T> ErasedDestructor for T
where T: 'static,

source§

impl<T> MaybeSendSync for T