autd3_driver::datagram

Trait IntoFociSTMGenerator

Source
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§

Source

type G: FociSTMGenerator<N>

The type of the generator.

Required Methods§

Source

fn into(self) -> Self::G

Converts to FociSTMGenerator.

Implementors§

Source§

impl<const N: usize, C, T> IntoFociSTMGenerator<N> for T
where T: IntoIterator<Item = C>, ControlPoints<N>: From<C>,