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§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".