pub trait Backend {
// Required method
fn render(&self, env: &Env) -> Result<Vec<Manifest>, RenderError>;
}Expand description
The morphism. Stateless by convention — backend impls hold only their config (e.g. namespace defaults, label conventions), not state derived from the env.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".