1 2 3 4 5 6 7 8 9 10 11
use super::Controller; #[derive(Debug)] #[cfg_attr(feature = "defmt", derive(defmt::Format))] pub struct NoControl; impl Controller for NoControl { fn window(&self) -> usize { usize::MAX } }