src/error.rs

Mon, 24 Oct 2022 09:41:43 +0300

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 24 Oct 2022 09:41:43 +0300
changeset 3
20db884b7028
parent 0
9f27689eb130
child 4
61b068c50e25
permissions
-rw-r--r--

Allow step closure of AlgIterators to indicate succesfull termination or failure.


use std::error::Error;

pub type DynResult<T> = Result<T, Box<dyn Error>>;
pub type DynError = DynResult<()>;


mercurial