pub struct Param {
pub reg: Reg,
pub class: RegClass,
}Expand description
One parameter of a block: the register the value arrives in, and its class.
Fields§
§reg: RegWhat the value arrives as, virtual until the allocator has run.
class: RegClassThe class it is drawn from.
Trait Implementations§
impl Copy for Param
impl Eq for Param
impl StructuralPartialEq for Param
Auto Trait Implementations§
impl Freeze for Param
impl RefUnwindSafe for Param
impl Send for Param
impl Sync for Param
impl Unpin for Param
impl UnsafeUnpin for Param
impl UnwindSafe for Param
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