pub trait CZextBEmitter<T0> {
// Required method
fn c_zext_b(&mut self, rd: T0);
}Expand description
Zero-extend byte, 16-bit encoding
This instruction takes a single source/destination operand. This instruction zero-extends the least-significant byte of the source to XLEN by inserting 0’s into all of the bits more significant than 7.
§Forms
Assembly: c.zext.b xd
Rust: c_zext_b(rd)
§Arguments
rd— Destination/source register.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".