Trait drone_core::exception::Exception [] [src]

pub trait Exception {
    type Config;
    unsafe fn config(config: Self::Config);
fn run(&mut self); }

Exception routines.

Associated Types

Exception configuration data.

Required Methods

Configures an exception.

Safety

Must be called only by exceptions::config.

The exception entry.

Implementors