Struct mozjs_sys::jsapi::JSJitInfo

source ·
#[repr(C)]
pub struct JSJitInfo { pub __bindgen_anon_1: JSJitInfo__bindgen_ty_1, pub __bindgen_anon_2: JSJitInfo__bindgen_ty_2, pub __bindgen_anon_3: JSJitInfo__bindgen_ty_3, pub _bitfield_align_1: [u16; 0], pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4]>, }
Expand description

This struct contains metadata passed from the DOM to the JS Engine for JIT optimizations on DOM property accessors.

Eventually, this should be made available to general JSAPI users as not experimental and not a friend API, but we’re not ready to do so yet.

Fields§

§__bindgen_anon_1: JSJitInfo__bindgen_ty_1§__bindgen_anon_2: JSJitInfo__bindgen_ty_2§__bindgen_anon_3: JSJitInfo__bindgen_ty_3§_bitfield_align_1: [u16; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 4]>

Implementations§

source§

impl JSJitInfo

source

pub fn type_(&self) -> u32

source

pub fn set_type_(&mut self, val: u32)

source

pub fn aliasSet_(&self) -> u32

source

pub fn set_aliasSet_(&mut self, val: u32)

source

pub fn returnType_(&self) -> u32

source

pub fn set_returnType_(&mut self, val: u32)

source

pub fn isInfallible(&self) -> u32

source

pub fn set_isInfallible(&mut self, val: u32)

source

pub fn isMovable(&self) -> u32

source

pub fn set_isMovable(&mut self, val: u32)

source

pub fn isEliminatable(&self) -> u32

source

pub fn set_isEliminatable(&mut self, val: u32)

source

pub fn isAlwaysInSlot(&self) -> u32

source

pub fn set_isAlwaysInSlot(&mut self, val: u32)

source

pub fn isLazilyCachedInSlot(&self) -> u32

source

pub fn set_isLazilyCachedInSlot(&mut self, val: u32)

source

pub fn isTypedMethod(&self) -> u32

source

pub fn set_isTypedMethod(&mut self, val: u32)

source

pub fn slotIndex(&self) -> u32

source

pub fn set_slotIndex(&mut self, val: u32)

source

pub fn new_bitfield_1( type_: u32, aliasSet_: u32, returnType_: u32, isInfallible: u32, isMovable: u32, isEliminatable: u32, isAlwaysInSlot: u32, isLazilyCachedInSlot: u32, isTypedMethod: u32, slotIndex: u32, ) -> __BindgenBitfieldUnit<[u8; 4]>

Trait Implementations§

source§

impl Clone for JSJitInfo

source§

fn clone(&self) -> JSJitInfo

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 Copy for JSJitInfo

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> 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