#[repr(C)]pub struct JSJitTraceEvent {
pub pc: u32,
pub opcode: u8,
pub kind: u8,
pub helper_id: u8,
pub reserved: u8,
}Fields§
§pc: u32§opcode: u8§kind: u8§helper_id: u8§reserved: u8Trait Implementations§
Source§impl Clone for JSJitTraceEvent
impl Clone for JSJitTraceEvent
Source§fn clone(&self) -> JSJitTraceEvent
fn clone(&self) -> JSJitTraceEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for JSJitTraceEvent
Auto Trait Implementations§
impl Freeze for JSJitTraceEvent
impl RefUnwindSafe for JSJitTraceEvent
impl Send for JSJitTraceEvent
impl Sync for JSJitTraceEvent
impl Unpin for JSJitTraceEvent
impl UnsafeUnpin for JSJitTraceEvent
impl UnwindSafe for JSJitTraceEvent
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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