pub trait IntoSimpleExpr {
// Required method
fn into_simple_expr(self) -> SimpleExpr;
}Expand description
Performs a conversion to SimpleExpr
Required Methods§
Sourcefn into_simple_expr(self) -> SimpleExpr
fn into_simple_expr(self) -> SimpleExpr
Method to perform the conversion
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".