Trait Handler

Source
pub trait Handler: Any {
    // Required method
    fn try_next_dma_sequence(&mut self);
}
Expand description

A trait to abstract over GlobalState structs with different generic parameters.

Required Methods§

Implementors§

Source§

impl<C1, C2, P, SM> Handler for GlobalState<C1, C2, P, SM>
where C1: ChannelIndex + 'static, C2: ChannelIndex + 'static, P: PIOExt + 'static, SM: StateMachineIndex + 'static,