pub trait StatementInterpolatorFactory<'lt, 'out> {
type Interpolator: ToTokens;
// Required method
fn new(
&'lt self,
stmt: StatementId,
block: &'out mut Block,
) -> Self::Interpolator;
}
pub trait StatementInterpolatorFactory<'lt, 'out> {
type Interpolator: ToTokens;
// Required method
fn new(
&'lt self,
stmt: StatementId,
block: &'out mut Block,
) -> Self::Interpolator;
}