pub trait SetGetBytes { // Required methods fn set_byte(&mut self, byte: usize, data: u8); fn get_byte(&self, byte: usize) -> u8; }