pub trait ListingFromStr {
    fn from_str(s: &str) -> Result<Listing, AssemblerError>;
}
Expand description

Generate a listing from a string

Required Methods

Implementors