idb::event

Trait Event

source
pub trait Event {
    type Target;

    // Required method
    fn target(&self) -> Result<Self::Target, Error>;
}
Expand description

Trait implemented by all events.

Required Associated Types§

source

type Target

The type of the target of the event.

Required Methods§

source

fn target(&self) -> Result<Self::Target, Error>

Returns the target of the event.

Implementations on Foreign Types§

source§

impl Event for Event

Implementors§