Struct sim::analytics::TimeSeriesCount [−][src]
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]
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]
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]
X: Deserialize<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
impl<X: Ord + Clone> Serialize for TimeSeriesCount<X> where
X: Serialize,
[src]
X: Serialize,
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<T> From<T> 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> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,