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