pub enum InvPicdCommand {
    Address(VirtAddrPcid),
    Single(Pcid),
    All,
    AllExceptGlobal,
}
Expand description

The Invalidate PCID Command to execute.

Variants

Address(VirtAddrPcid)

The logical processor invalidates mappings—except global translations—for the linear address and PCID specified.

Single(Pcid)

The logical processor invalidates all mappings—except global translations—associated with the PCID.

All

The logical processor invalidates all mappings—including global translations—associated with any PCID.

AllExceptGlobal

The logical processor invalidates all mappings—except global translations—associated with any PCID.

Trait Implementations

Formats the value using the given formatter. 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.