pub trait LowerableStmt {
// Required method
fn lower<L>(self, l: &L) -> Result<()>
where L: Lowering + ?Sized;
}Expand description
Declares that the type can be lowered into a statement.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.