pub trait VCodeInst: MachInst + MachInstEmit { }
Expand description
VCodeInst wraps all requirements for a MachInst to be in VCode: it must be
a MachInst
and it must be able to emit itself at least to a SizeCodeSink
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.