flowr 0.142.0

Runners for compiled 'flow' programs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(missing_docs)]

pub use error_chain::bail;
use error_chain::error_chain;

error_chain! {
    types {
        Error, ErrorKind, ResultExt, Result;
    }

    foreign_links {
        Url(url::ParseError);
        FlowCore(flowcore::errors::Error);
        Runtime(flowrlib::errors::Error);
        Io(std::io::Error);
        Iced(iced::Error);
    }
}