pub trait AddressWidth {
    // Required methods
    fn width() -> u8
       where Self: Sized;
    fn fmt_hex(&self, f: &mut Formatter<'_>) -> Result;
    fn from_parser(parser: &mut Parser<'_>) -> Result<Self, AmlParseError>
       where Self: Sized;
}

Required Methods§

source

fn width() -> u8
where Self: Sized,

source

fn fmt_hex(&self, f: &mut Formatter<'_>) -> Result

source

fn from_parser(parser: &mut Parser<'_>) -> Result<Self, AmlParseError>
where Self: Sized,

Implementations on Foreign Types§

source§

impl AddressWidth for u16

source§

fn width() -> u8

source§

fn fmt_hex(&self, f: &mut Formatter<'_>) -> Result

source§

fn from_parser(parser: &mut Parser<'_>) -> Result<Self, AmlParseError>

source§

impl AddressWidth for u32

source§

fn width() -> u8

source§

fn fmt_hex(&self, f: &mut Formatter<'_>) -> Result

source§

fn from_parser(parser: &mut Parser<'_>) -> Result<Self, AmlParseError>

source§

impl AddressWidth for u64

source§

fn width() -> u8

source§

fn fmt_hex(&self, f: &mut Formatter<'_>) -> Result

source§

fn from_parser(parser: &mut Parser<'_>) -> Result<Self, AmlParseError>

Implementors§