pub trait ExpressionMap<From> {
// Required method
fn map<To>(self) -> Expression<To>
where From: Into<To> + Send + Clone + 'static,
To: Send + 'static;
}Expand description
Extension trait to add map method directly to Expression
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".