Trait 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>