Type Alias acpi_tables::aml::AmlString

source ·
pub type AmlString = String;
Expand description

implement Aml trait for ‘String’. So purpose with str.

Aliased Type§

struct AmlString {
    vec: Vec<u8>,
}

Fields§

§vec: Vec<u8>

Trait Implementations§

source§

impl Aml for AmlString

source§

fn to_aml_bytes(&self, bytes: &mut Vec<u8>)

Translate an ACPI object into AML code and append to the vector buffer. Read more