1use crate::mysql_binlog::event::EventData; 2 3#[derive(Debug)] 4pub struct Event { 5 pub header: EventData, 6 pub event: Option<EventData>, 7}