Struct sim::analytics::TimeSeriesCount [−][src]
pub struct TimeSeriesCount<X: Ord + Clone> { pub counts: BTreeMap<(X, AgentType, usize), usize>, pub raw: Vec<(Time, AgentType, X)>, }
See https://github.com/a-b-street/abstreet/issues/85
Fields
counts: BTreeMap<(X, AgentType, usize), usize>
(Road or intersection, type, hour block) -> count for that hour
raw: Vec<(Time, AgentType, X)>
Very expensive to store, so it’s optional. But useful to flag on to experiment with representations better than the hour count above.
Implementations
impl<X: Ord + Clone> TimeSeriesCount<X>
[src]
impl<X: Ord + Clone> TimeSeriesCount<X>
[src]fn new() -> TimeSeriesCount<X>
[src]
fn record(&mut self, time: Time, id: X, agent_type: AgentType, count: usize)
[src]
pub fn total_for(&self, id: X) -> usize
[src]
pub fn total_for_with_agent_types(
&self,
id: X,
agent_types: BTreeSet<AgentType>
) -> usize
[src]
&self,
id: X,
agent_types: BTreeSet<AgentType>
) -> usize
pub fn total_for_by_time(&self, id: X, now: Time) -> usize
[src]
pub fn all_total_counts(&self, agent_types: &BTreeSet<AgentType>) -> Counter<X>
[src]
pub fn count_per_hour(
&self,
id: X,
time: Time
) -> Vec<(AgentType, Vec<(Time, usize)>)>
[src]
&self,
id: X,
time: Time
) -> Vec<(AgentType, Vec<(Time, usize)>)>
pub fn raw_throughput(
&self,
now: Time,
id: X
) -> Vec<(AgentType, Vec<(Time, usize)>)>
[src]
&self,
now: Time,
id: X
) -> Vec<(AgentType, Vec<(Time, usize)>)>
Trait Implementations
impl<X: Clone + Ord> Clone for TimeSeriesCount<X>
[src]
impl<X: Clone + Ord> Clone for TimeSeriesCount<X>
[src]fn clone(&self) -> TimeSeriesCount<X>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<'de, X: Ord + Clone> Deserialize<'de> for TimeSeriesCount<X> where
X: Deserialize<'de>,
[src]
impl<'de, X: Ord + Clone> Deserialize<'de> for TimeSeriesCount<X> where
X: Deserialize<'de>,
[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl<X> RefUnwindSafe for TimeSeriesCount<X> where
X: RefUnwindSafe,
X: RefUnwindSafe,
impl<X> Send for TimeSeriesCount<X> where
X: Send,
X: Send,
impl<X> Sync for TimeSeriesCount<X> where
X: Sync,
X: Sync,
impl<X> Unpin for TimeSeriesCount<X> where
X: Unpin,
X: Unpin,
impl<X> UnwindSafe for TimeSeriesCount<X> where
X: RefUnwindSafe + UnwindSafe,
X: RefUnwindSafe + UnwindSafe,
Blanket Implementations
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Same<T> for T
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,