pub enum EncodableEncoding {
Legacy,
D3Now,
Xop,
Vex,
Evex,
Mvex,
}Expand description
Encodable encoding types (corresponds to ZydisEncodableEncoding)
This enum represents the different instruction encoding formats that can be used to encode x86/x64 instructions.
Variants§
Legacy
Legacy encoding - standard x86/x64 instruction encoding
D3Now
3DNow! encoding - AMD 3DNow! instruction set
Xop
XOP encoding - AMD XOP (Extended Operations) instruction set
Vex
VEX encoding - AVX/AVX2 SIMD instructions (128/256-bit)
Evex
EVEX encoding - AVX-512 SIMD instructions (512-bit, mask registers)
Mvex
MVEX encoding - Intel Knights Corner (KNC) special encoding
Trait Implementations§
Source§impl Clone for EncodableEncoding
impl Clone for EncodableEncoding
Source§fn clone(&self) -> EncodableEncoding
fn clone(&self) -> EncodableEncoding
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 EncodableEncoding
impl Debug for EncodableEncoding
Source§impl Default for EncodableEncoding
impl Default for EncodableEncoding
Source§fn default() -> EncodableEncoding
fn default() -> EncodableEncoding
Returns the “default value” for a type. Read more
Source§impl Hash for EncodableEncoding
impl Hash for EncodableEncoding
Source§impl PartialEq for EncodableEncoding
impl PartialEq for EncodableEncoding
impl Copy for EncodableEncoding
impl Eq for EncodableEncoding
impl StructuralPartialEq for EncodableEncoding
Auto Trait Implementations§
impl Freeze for EncodableEncoding
impl RefUnwindSafe for EncodableEncoding
impl Send for EncodableEncoding
impl Sync for EncodableEncoding
impl Unpin for EncodableEncoding
impl UnsafeUnpin for EncodableEncoding
impl UnwindSafe for EncodableEncoding
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