#[repr(C)]pub struct JSJitABIInfo {Show 23 fields
pub struct_size: u32,
pub major: u16,
pub minor: u16,
pub pointer_width: u8,
pub little_endian: u8,
pub value_size: u16,
pub source_revision: u64,
pub opcode_fingerprint: u64,
pub value_layout_fingerprint: u64,
pub build_feature_flags: u64,
pub build_fingerprint: u64,
pub abi_info_layout_fingerprint: u64,
pub function_id_layout_fingerprint: u64,
pub hot_event_layout_fingerprint: u64,
pub function_snapshot_layout_fingerprint: u64,
pub entry_handle_layout_fingerprint: u64,
pub backend_vtable_layout_fingerprint: u64,
pub exec_frame_layout_fingerprint: u64,
pub exit_layout_fingerprint: u64,
pub runtime_api_layout_fingerprint: u64,
pub helper_table_fingerprint: u64,
pub element_layout_fingerprint: u64,
pub element_layout: JSJitElementLayout,
}Fields§
§struct_size: u32§major: u16§minor: u16§pointer_width: u8§little_endian: u8§value_size: u16§source_revision: u64§opcode_fingerprint: u64§value_layout_fingerprint: u64§build_feature_flags: u64§build_fingerprint: u64§abi_info_layout_fingerprint: u64§function_id_layout_fingerprint: u64§hot_event_layout_fingerprint: u64§function_snapshot_layout_fingerprint: u64§entry_handle_layout_fingerprint: u64§backend_vtable_layout_fingerprint: u64§exec_frame_layout_fingerprint: u64§exit_layout_fingerprint: u64§runtime_api_layout_fingerprint: u64§helper_table_fingerprint: u64§element_layout_fingerprint: u64§element_layout: JSJitElementLayoutTrait Implementations§
Source§impl Clone for JSJitABIInfo
impl Clone for JSJitABIInfo
Source§fn clone(&self) -> JSJitABIInfo
fn clone(&self) -> JSJitABIInfo
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 JSJitABIInfo
Auto Trait Implementations§
impl Freeze for JSJitABIInfo
impl RefUnwindSafe for JSJitABIInfo
impl Send for JSJitABIInfo
impl Sync for JSJitABIInfo
impl Unpin for JSJitABIInfo
impl UnsafeUnpin for JSJitABIInfo
impl UnwindSafe for JSJitABIInfo
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