Trait yaxpeax_arch::AddrParse[][src]

pub trait AddrParse: Sized {
    type Err;
    fn parse_from(s: &str) -> Result<Self, Self::Err>;
}

Associated Types

Loading content...

Required methods

fn parse_from(s: &str) -> Result<Self, Self::Err>[src]

Loading content...

Implementations on Foreign Types

impl AddrParse for usize[src]

type Err = ParseIntError

fn parse_from(s: &str) -> Result<Self, Self::Err>[src]

impl AddrParse for u64[src]

type Err = ParseIntError

fn parse_from(s: &str) -> Result<Self, Self::Err>[src]

impl AddrParse for u32[src]

type Err = ParseIntError

fn parse_from(s: &str) -> Result<Self, Self::Err>[src]

impl AddrParse for u16[src]

type Err = ParseIntError

fn parse_from(s: &str) -> Result<Self, Self::Err>[src]

Loading content...

Implementors

Loading content...