pub trait Materializer<'t> {
type Output;
// Required method
fn materialize(
&self,
effects: &[RuntimeEffect<'t>],
result_type: TypeId,
) -> Self::Output;
}Expand description
Materializer transforms effect logs into output values.