pub trait CANWrite: CANRead { // Required method fn mut_data(&mut self) -> &mut [u8] ⓘ; }
A trait providing methods for accessing the underlying data in a mutable fashion.
Returns a mutable slice representing the mutable data.