[][src]Enum rtlola_frontend::ir::Tracking

pub enum Tracking {
    All(StreamReference),
    Bounded {
        trackee: StreamReference,
        num: u128,
        rate: Duration,
    },
}

This data type provides information regarding how much data a stream needs to have access to from another stream.

Variants

Need to store every single value of a stream

Bounded

Need to store num values of trackee, evicting/add a value every rate time units.

Fields of Bounded

trackee: StreamReference

The stream that will be tracked.

num: u128

The number of values that will be accessed.

rate: Duration

The duration in which values might be accessed.

Trait Implementations

impl Clone for Tracking[src]

impl Copy for Tracking[src]

impl Debug for Tracking[src]

impl Eq for Tracking[src]

impl PartialEq<Tracking> for Tracking[src]

impl StructuralEq for Tracking[src]

impl StructuralPartialEq for Tracking[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.