Trait libafl::events::EventFirer[][src]

pub trait EventFirer<I, S> where
    I: Input
{ fn fire(&mut self, state: &mut S, event: Event<I>) -> Result<(), Error>; fn serialize_observers<OT>(
        &mut self,
        observers: &OT
    ) -> Result<Vec<u8>, Error>
    where
        OT: ObserversTuple<I, S>
, { ... }
fn configuration(&self) -> &str { ... } }
Expand description

EventFirer fire an event.

Required methods

Send off an event to the broker

Provided methods

Serialize all observers for this type and manager

Get the configuration

Implementors