#[repr(C)]pub struct JSJitHelperInfo {
pub id: u16,
pub abi_type_count: u8,
pub value_arity: u8,
pub abi_types: [u8; 8],
pub value_ownership: [u8; 4],
pub output_ownership: u8,
pub reserved: [u8; 3],
pub flags: u32,
pub name: *const i8,
}Fields§
§id: u16§abi_type_count: u8§value_arity: u8§abi_types: [u8; 8]§value_ownership: [u8; 4]§output_ownership: u8§reserved: [u8; 3]§flags: u32§name: *const i8Trait Implementations§
Source§impl Clone for JSJitHelperInfo
impl Clone for JSJitHelperInfo
Source§fn clone(&self) -> JSJitHelperInfo
fn clone(&self) -> JSJitHelperInfo
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 JSJitHelperInfo
Auto Trait Implementations§
impl !Send for JSJitHelperInfo
impl !Sync for JSJitHelperInfo
impl Freeze for JSJitHelperInfo
impl RefUnwindSafe for JSJitHelperInfo
impl Unpin for JSJitHelperInfo
impl UnsafeUnpin for JSJitHelperInfo
impl UnwindSafe for JSJitHelperInfo
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