Trait gccjit::ToLValue

source ·
pub trait ToLValue<'ctx> {
    // Required method
    fn to_lvalue(&self) -> LValue<'ctx>;
}
Expand description

ToLValue is a trait implemented by types that can be converted (or treated as) LValues.

Required Methods§

source

fn to_lvalue(&self) -> LValue<'ctx>

Implementors§

source§

impl<'ctx> ToLValue<'ctx> for LValue<'ctx>

source§

impl<'ctx> ToLValue<'ctx> for Parameter<'ctx>