pub trait AmlObject {
// Required method
fn append_to_vec(&self, byte_stream: &mut Vec<u8>);
// Provided method
fn to_bytes(&self) -> Vec<u8> ⓘ { ... }
}
Expand description
A trait indicating that a particular type can be serialized into a byte stream of ACPI Machine Language (AML).