Trait drone_core::exception::ExceptionTable [] [src]

pub trait ExceptionTable {
    type Config;
    unsafe fn config<F>(f: F)
    where
        F: Send + 'static,
        F: FnOnce() -> Self::Config
; }

A vector tables to exception routines.

Associated Types

Exceptions configuration.

Required Methods

Configures exceptions.

Safety

Must be called no less and no more than once, before exceptions begins executing.

Implementors