pub struct EventLog {
pub event_category: String,
pub event_type: String,
pub action: String,
pub extra_string: String,
pub extra_int: i32,
}
Fields§
§event_category: String
§event_type: String
§action: String
§extra_string: String
§extra_int: i32
Trait Implementations§
Source§impl BaseParser for EventLog
impl BaseParser for EventLog
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl PacketVariable for EventLog
impl PacketVariable for EventLog
impl StructuralPartialEq for EventLog
Auto Trait Implementations§
impl Freeze for EventLog
impl RefUnwindSafe for EventLog
impl Send for EventLog
impl Sync for EventLog
impl Unpin for EventLog
impl UnwindSafe for EventLog
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more