Enum mozjs_sys::jsapi::JSJitInfo_OpType
source · #[repr(u32)]pub enum JSJitInfo_OpType {
Getter = 0,
Setter = 1,
Method = 2,
StaticMethod = 3,
InlinableNative = 4,
TrampolineNative = 5,
IgnoresReturnValueNative = 6,
OpTypeCount = 7,
}
Variants§
Getter = 0
Setter = 1
Method = 2
StaticMethod = 3
InlinableNative = 4
TrampolineNative = 5
IgnoresReturnValueNative = 6
OpTypeCount = 7
Trait Implementations§
source§impl Clone for JSJitInfo_OpType
impl Clone for JSJitInfo_OpType
source§fn clone(&self) -> JSJitInfo_OpType
fn clone(&self) -> JSJitInfo_OpType
Returns a copy 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 JSJitInfo_OpType
impl Debug for JSJitInfo_OpType
source§impl Hash for JSJitInfo_OpType
impl Hash for JSJitInfo_OpType
source§impl PartialEq for JSJitInfo_OpType
impl PartialEq for JSJitInfo_OpType
source§fn eq(&self, other: &JSJitInfo_OpType) -> bool
fn eq(&self, other: &JSJitInfo_OpType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for JSJitInfo_OpType
impl Eq for JSJitInfo_OpType
impl StructuralPartialEq for JSJitInfo_OpType
Auto Trait Implementations§
impl Freeze for JSJitInfo_OpType
impl RefUnwindSafe for JSJitInfo_OpType
impl Send for JSJitInfo_OpType
impl Sync for JSJitInfo_OpType
impl Unpin for JSJitInfo_OpType
impl UnwindSafe for JSJitInfo_OpType
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
source§impl<T> Filterable for T
impl<T> Filterable for T
source§fn filterable(
self,
filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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