Trait ResourceObject

Source
pub trait ResourceObject {
    // Required method
    fn append_to_vec(&self, byte_stream: &mut Vec<u8>);

    // Provided method
    fn to_bytes(&self) -> Vec<u8>  { ... }
}
Expand description

An AML resource.

Required Methods§

Source

fn append_to_vec(&self, byte_stream: &mut Vec<u8>)

Provided Methods§

Source

fn to_bytes(&self) -> Vec<u8>

Implementors§