pub struct DwellParams {
pub min_dwell: f64,
pub per_alighter: f64,
pub per_boarder: f64,
}Expand description
Parameters of the linear dwell-time model.
Fields§
§min_dwell: f64Minimum dwell time regardless of passenger flow (s).
per_alighter: f64Service time per alighting passenger (s).
per_boarder: f64Service time per boarding passenger (s).
Trait Implementations§
Source§impl Clone for DwellParams
impl Clone for DwellParams
Source§fn clone(&self) -> DwellParams
fn clone(&self) -> DwellParams
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 DwellParams
impl Debug for DwellParams
Source§impl Default for DwellParams
impl Default for DwellParams
Source§impl PartialEq for DwellParams
impl PartialEq for DwellParams
impl Copy for DwellParams
impl StructuralPartialEq for DwellParams
Auto Trait Implementations§
impl Freeze for DwellParams
impl RefUnwindSafe for DwellParams
impl Send for DwellParams
impl Sync for DwellParams
impl Unpin for DwellParams
impl UnsafeUnpin for DwellParams
impl UnwindSafe for DwellParams
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