pub trait IntoGainSTMGenerator {
type G: GainSTMGenerator;
// Required method
fn into(self) -> Self::G;
}Expand description
A trait to convert to GainSTMGenerator.
Required Associated Types§
Sourcetype G: GainSTMGenerator
type G: GainSTMGenerator
The type of the generator.
Required Methods§
Sourcefn into(self) -> Self::G
fn into(self) -> Self::G
Converts to GainSTMGenerator.