Trait AcpiTopology

Source
pub trait AcpiTopology:
    ArchTopology
    + Inspect
    + Sized {
    // Required methods
    fn extend_srat(topology: &ProcessorTopology<Self>, srat: &mut Vec<u8>);
    fn extend_madt(topology: &ProcessorTopology<Self>, madt: &mut Vec<u8>);
}

Required Methods§

Source

fn extend_srat(topology: &ProcessorTopology<Self>, srat: &mut Vec<u8>)

Source

fn extend_madt(topology: &ProcessorTopology<Self>, madt: &mut Vec<u8>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl AcpiTopology for Aarch64Topology

Source§

fn extend_srat(topology: &ProcessorTopology<Self>, srat: &mut Vec<u8>)

Source§

fn extend_madt(topology: &ProcessorTopology<Self>, madt: &mut Vec<u8>)

Source§

impl AcpiTopology for X86Topology

Source§

fn extend_srat(topology: &ProcessorTopology<Self>, srat: &mut Vec<u8>)

Source§

fn extend_madt(topology: &ProcessorTopology<Self>, madt: &mut Vec<u8>)

Implementors§