flowr 1.0.0

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

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);
    }
}