autd3_driver::datagram

Trait IntoGainSTMGenerator

Source
pub trait IntoGainSTMGenerator {
    type G: GainSTMGenerator;

    // Required method
    fn into(self) -> Self::G;
}
Expand description

A trait to convert to GainSTMGenerator.

Required Associated Types§

Source

type G: GainSTMGenerator

The type of the generator.

Required Methods§

Source

fn into(self) -> Self::G

Converts to GainSTMGenerator.

Implementors§

Source§

impl<G: Gain, T> IntoGainSTMGenerator for T
where T: IntoIterator<Item = G>,

Source§

type G = Vec<G>