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
type Config
Exceptions configuration.
Required Methods
unsafe fn config<F>(f: F) where
F: Send + 'static,
F: FnOnce() -> Self::Config,
F: Send + 'static,
F: FnOnce() -> Self::Config,
Configures exceptions.
Safety
Must be called no less and no more than once, before exceptions begins executing.