Type Definition pastemyst::paste::PasteResult[][src]

type PasteResult<T, E = Box<dyn Error>> = Result<T, E>;

The PasteResult type provided by this library for ease. It has a return value and error.

Examples

use pastemyst::paste::PasteResult;

fn main() -> PasteResult<()> {
    Ok(())
}