Skip to main content

WindowsExceptionVector

Trait WindowsExceptionVector 

Source
pub trait WindowsExceptionVector {
    const Apc: Self;
    const Dpc: Self;
}
Expand description

An extension trait for ExceptionVector that provides access to Windows-specific exception vectors.

Required Associated Constants§

Source

const Apc: Self

Asynchronous Procedure Call (APC) interrupt.

Source

const Dpc: Self

Deferred Procedure Call (DPC) interrupt.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl WindowsExceptionVector for ExceptionVector

Source§

const Apc: Self

Source§

const Dpc: Self

Implementors§