#[repr(C)]
pub struct TaskStateSegmentBitmaps<T>where
    T: AsRef<[u8]> + AsMut<[u8]> + Eq + ?Sized,
{ pub interrupt_redirect: [u8; 32], pub io_permission: IOPermissionBitmap<T>, }
Available on x86 only.
Expand description

I/O permission map and interrupt redirect map, which are always located together in a task state segment (TSS).

Fields§

§interrupt_redirect: [u8; 32]

Indicates which handler to use for software-triggered interrupts in virtual real mode.

If bit N (bit N mod 8 of byte floor(N / 8)) is set, it indicates that an INT N in virtual real mode should be handled using the protected-mode mechanism rather than the process’s own interrupt table.

§io_permission: IOPermissionBitmap<T>

The IOPermissionBitmap for this task.

Trait Implementations§

Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.