#[repr(u32)]enum CxByteCode {
Show 33 variants
Nop = 0,
Retn = 1,
MovEdiArg = 2,
PushEbx = 3,
PopEbx = 4,
PushEcx = 5,
PopEcx = 6,
MovEaxEbx = 7,
MovEbxEax = 8,
MovEcxEbx = 9,
MovEaxControlBlock = 10,
MovEaxEdi = 11,
MovEaxIndirect = 12,
AddEaxEbx = 13,
SubEaxEbx = 14,
ImulEaxEbx = 15,
AndEcx0F = 16,
ShrEbx1 = 17,
ShlEax1 = 18,
ShrEaxCl = 19,
ShlEaxCl = 20,
OrEaxEbx = 21,
NotEax = 22,
NegEax = 23,
DecEax = 24,
IncEax = 25,
Immed = 256,
MovEaxImmed = 257,
AndEbxImmed = 258,
AndEaxImmed = 259,
XorEaxImmed = 260,
AddEaxImmed = 261,
SubEaxImmed = 262,
}Available on crate features
kirikiri and kirikiri-arc only.Variants§
Nop = 0
Retn = 1
MovEdiArg = 2
PushEbx = 3
PopEbx = 4
PushEcx = 5
PopEcx = 6
MovEaxEbx = 7
MovEbxEax = 8
MovEcxEbx = 9
MovEaxControlBlock = 10
MovEaxEdi = 11
MovEaxIndirect = 12
AddEaxEbx = 13
SubEaxEbx = 14
ImulEaxEbx = 15
AndEcx0F = 16
ShrEbx1 = 17
ShlEax1 = 18
ShrEaxCl = 19
ShlEaxCl = 20
OrEaxEbx = 21
NotEax = 22
NegEax = 23
DecEax = 24
IncEax = 25
Immed = 256
MovEaxImmed = 257
AndEbxImmed = 258
AndEaxImmed = 259
XorEaxImmed = 260
AddEaxImmed = 261
SubEaxImmed = 262
Trait Implementations§
Source§impl Clone for CxByteCode
impl Clone for CxByteCode
Source§fn clone(&self) -> CxByteCode
fn clone(&self) -> CxByteCode
Returns a duplicate 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 CxByteCode
impl Debug for CxByteCode
Source§impl From<CxByteCode> for u32
impl From<CxByteCode> for u32
Source§fn from(v: CxByteCode) -> Self
fn from(v: CxByteCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CxByteCode
impl PartialEq for CxByteCode
Source§impl TryFrom<u32> for CxByteCode
impl TryFrom<u32> for CxByteCode
impl Copy for CxByteCode
impl Eq for CxByteCode
impl StructuralPartialEq for CxByteCode
Auto Trait Implementations§
impl Freeze for CxByteCode
impl RefUnwindSafe for CxByteCode
impl Send for CxByteCode
impl Sync for CxByteCode
impl Unpin for CxByteCode
impl UnwindSafe for CxByteCode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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