bambam 0.3.1

The Behavior and Advanced Mobility Big Access Model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(thiserror::Error, Debug)]
pub enum GtfsConfigError {
    #[error("failed reading '{filepath}': {error}")]
    ReadFailure { filepath: String, error: String },
    #[error("{0}")]
    RunFailure(String),
    #[error("{0}")]
    InternalError(String),
    #[error("{msg}: {source}")]
    ConfigReadFailure {
        msg: String,
        source: config::ConfigError,
    },
}