Trait gccjit::ToRValue

source ·
pub trait ToRValue<'ctx> {
    // Required method
    fn to_rvalue(&self) -> RValue<'ctx>;
}
Expand description

ToRValue is a trait implemented by types that can be converted to, or treated as, an RValue.

Required Methods§

source

fn to_rvalue(&self) -> RValue<'ctx>

Implementors§

source§

impl<'ctx> ToRValue<'ctx> for LValue<'ctx>

source§

impl<'ctx> ToRValue<'ctx> for Parameter<'ctx>

source§

impl<'ctx> ToRValue<'ctx> for RValue<'ctx>