[][src]Type Definition lasm::error::Result

type Result<T> = Result<T, Error>;

The Result type is shorthand for a result that uses the Error enum as the Err type. The Error type is just used as the general crate-wide Error type.