pub struct VehicularFreeway;Expand description
Vehicular freeway LoS based on density (HCM Chapter 12).
Input: density in passenger cars per km per lane (pc/km/ln).
| Grade | Density (pc/km/ln) | Description |
|---|---|---|
| A | <= 7 | Free flow |
| B | <= 11 | Reasonably free flow |
| C | <= 16 | Stable flow |
| D | <= 22 | Approaching unstable |
| E | <= 28 | Unstable flow |
| F | > 28 | Forced / breakdown |
Trait Implementations§
Source§impl Clone for VehicularFreeway
impl Clone for VehicularFreeway
Source§fn clone(&self) -> VehicularFreeway
fn clone(&self) -> VehicularFreeway
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VehicularFreeway
impl Debug for VehicularFreeway
Source§impl LosCriteria for VehicularFreeway
impl LosCriteria for VehicularFreeway
impl Copy for VehicularFreeway
Auto Trait Implementations§
impl Freeze for VehicularFreeway
impl RefUnwindSafe for VehicularFreeway
impl Send for VehicularFreeway
impl Sync for VehicularFreeway
impl Unpin for VehicularFreeway
impl UnsafeUnpin for VehicularFreeway
impl UnwindSafe for VehicularFreeway
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more