pub struct DwellTime {
pub total: f64,
pub from_alighters: f64,
pub from_boarders: f64,
}Expand description
Computed dwell time with a breakdown for telemetry.
Fields§
§total: f64Total dwell (s).
from_alighters: f64Contribution from alighters (s).
from_boarders: f64Contribution from boarders (s).
Trait Implementations§
impl Copy for DwellTime
impl StructuralPartialEq for DwellTime
Auto Trait Implementations§
impl Freeze for DwellTime
impl RefUnwindSafe for DwellTime
impl Send for DwellTime
impl Sync for DwellTime
impl Unpin for DwellTime
impl UnsafeUnpin for DwellTime
impl UnwindSafe for DwellTime
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