pub enum LosGrade {
A,
B,
C,
D,
E,
F,
}Expand description
Level-of-Service grade A through F (HCM convention).
Ordered from best (A) to worst (F). The meaning of each grade
depends on the facility type and the LosCriteria used.
Variants§
A
Best operating conditions.
B
Stable flow / minor conflicts.
C
Stable flow with some restrictions.
D
Approaching unstable flow.
E
Unstable flow / significant congestion.
F
Breakdown / forced flow.
Trait Implementations§
Source§impl Ord for LosGrade
impl Ord for LosGrade
Source§impl PartialOrd for LosGrade
impl PartialOrd for LosGrade
impl Copy for LosGrade
impl Eq for LosGrade
impl StructuralPartialEq for LosGrade
Auto Trait Implementations§
impl Freeze for LosGrade
impl RefUnwindSafe for LosGrade
impl Send for LosGrade
impl Sync for LosGrade
impl Unpin for LosGrade
impl UnsafeUnpin for LosGrade
impl UnwindSafe for LosGrade
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