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
use std::num::NonZeroU64;

use super::ConstraintConfig;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(deny_unknown_fields)]
pub struct MultimodalConstraintConfig {
    /// name of the mode associated with this edge list
    pub this_mode: String,
    /// modes that can be used on this trip
    pub available_modes: Vec<String>,
}