Struct x86_64::irq::IdtEntryOptions [] [src]

pub struct IdtEntryOptions(_);

Describes options of an IDT entry.

Methods

impl IdtEntryOptions
[src]

Update the present bit.

Control if interrupts should be disabled when the handler function is called.

Set the minimal privilege level required to invoke this interrupt.

Set the IST index. If None is passed, the stack switching mechanism is disabled. If Some(i) is passed, the CPU will switch to the i-th stack in the IST of the loaded TSS (index starts at 0).

Trait Implementations

impl Debug for IdtEntryOptions
[src]

Formats the value using the given formatter.

impl Clone for IdtEntryOptions
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for IdtEntryOptions
[src]