pub trait ExprGeneratorAsync<E> {
// Required method
async fn generate(
&mut self,
expr: &ESExpr<'_>,
) -> Result<(), GeneratorError<E>>;
}
Expand description
Defines ESExpr
generation for binary file format
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.