#[repr(C)]
pub struct sljit_compiler {
Show 28 fields pub error: sljit_s32, pub options: sljit_s32, pub labels: *mut sljit_label, pub jumps: *mut sljit_jump, pub put_labels: *mut sljit_put_label, pub consts: *mut sljit_const, pub last_label: *mut sljit_label, pub last_jump: *mut sljit_jump, pub last_const: *mut sljit_const, pub last_put_label: *mut sljit_put_label, pub allocator_data: *mut c_void, pub exec_allocator_data: *mut c_void, pub buf: *mut sljit_memory_fragment, pub abuf: *mut sljit_memory_fragment, pub scratches: sljit_s32, pub saveds: sljit_s32, pub fscratches: sljit_s32, pub fsaveds: sljit_s32, pub local_size: sljit_s32, pub size: sljit_uw, pub executable_offset: sljit_sw, pub executable_size: sljit_uw, pub mode32: sljit_s32, pub verbose: *mut FILE, pub last_flags: sljit_s32, pub last_return: sljit_s32, pub logical_local_size: sljit_s32, pub skip_checks: sljit_s32,
}

Fields§

§error: sljit_s32§options: sljit_s32§labels: *mut sljit_label§jumps: *mut sljit_jump§put_labels: *mut sljit_put_label§consts: *mut sljit_const§last_label: *mut sljit_label§last_jump: *mut sljit_jump§last_const: *mut sljit_const§last_put_label: *mut sljit_put_label§allocator_data: *mut c_void§exec_allocator_data: *mut c_void§buf: *mut sljit_memory_fragment§abuf: *mut sljit_memory_fragment§scratches: sljit_s32§saveds: sljit_s32§fscratches: sljit_s32§fsaveds: sljit_s32§local_size: sljit_s32§size: sljit_uw§executable_offset: sljit_sw§executable_size: sljit_uw§mode32: sljit_s32§verbose: *mut FILE§last_flags: sljit_s32§last_return: sljit_s32§logical_local_size: sljit_s32§skip_checks: sljit_s32

Trait Implementations§

source§

impl Clone for sljit_compiler

source§

fn clone(&self) -> sljit_compiler

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 ConstDefault for sljit_compiler

source§

const DEFAULT: Self = _

The constant default value.
source§

impl Debug for sljit_compiler

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for sljit_compiler

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Copy for sljit_compiler

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