pub trait IoControl { type Data; // Required methods fn name(&self) -> u64; fn data(&mut self) -> &mut Self::Data; }