pub trait WithPulse {
    // Required methods
    fn enable_pulse(&mut self);
    fn with_pulse(self) -> Self;
}

Required Methods§

source

fn enable_pulse(&mut self)

source

fn with_pulse(self) -> Self

Implementors§