pub trait ToEventLog {
    type Data: ?Sized;

    fn to_event_log(&self) -> EventLog<&Self::Data>;
}
Expand description

This type can be converted into an EventLog struct

Required Associated Types§

Metadata associated with the event

Required Methods§

Retrieves the event log before serialization

Implementors§