[][src]Struct sim::analytics::TimeSeriesCount

pub struct TimeSeriesCount<X: Ord + Clone> {
    pub counts: BTreeMap<(X, AgentType, usize), usize>,
    pub raw: Vec<(Time, AgentType, X)>,
}

Fields

counts: BTreeMap<(X, AgentType, usize), usize>raw: Vec<(Time, AgentType, X)>

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 all_total_counts(&self) -> Counter<X>[src]

pub fn count_per_hour(
    &self,
    id: X,
    time: Time
) -> Vec<(AgentType, Vec<(Time, usize)>)>
[src]

pub fn raw_throughput(
    &self,
    now: Time,
    id: X
) -> Vec<(AgentType, Vec<(Time, usize)>)>
[src]

Trait Implementations

impl<X: Clone + Ord> Clone for TimeSeriesCount<X>[src]

impl<'de, X: Ord + Clone> Deserialize<'de> for TimeSeriesCount<X> where
    X: Deserialize<'de>, 
[src]

impl<X: Ord + Clone> Serialize for TimeSeriesCount<X> where
    X: Serialize
[src]

Auto Trait Implementations

impl<X> RefUnwindSafe for TimeSeriesCount<X> where
    X: RefUnwindSafe

impl<X> Send for TimeSeriesCount<X> where
    X: Send

impl<X> Sync for TimeSeriesCount<X> where
    X: Sync

impl<X> Unpin for TimeSeriesCount<X> where
    X: Unpin

impl<X> UnwindSafe for TimeSeriesCount<X> where
    X: RefUnwindSafe + UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,