1use crate::Cursor; 2 3// Event's created by the IO 4pub enum Event<'a, 'b> { 5 Read(&'a mut Cursor<'b>), 6 End(&'a mut Cursor<'b>), 7}