pub trait EnrichService<I, E, T> {
// Required method
fn enrich(
&self,
ctx: &mut dyn ExecutionContext<T>,
input: &I,
) -> Result<E, BrddError>;
}Expand description
Protocol for services that fetch additional data needed for the UseCase.