Trait dvi::Parse [] [src]

pub trait Parse<V> where
    V: AsRef<[u8]>,
    Self: Sized
{ fn parse(v: V) -> IResult<V, Self>; }

A type that can be parsed from a byte slice

Required Methods

Returns the Instruction and how many bytes were used

Implementors