[−][src]Enum rtlola_frontend::ir::Tracking
This data type provides information regarding how much data a stream needs to have access to from another stream.
Variants
All(StreamReference)Need to store every single value of a stream
Need to store num values of trackee, evicting/add a value every rate time units.
Fields of Bounded
trackee: StreamReferenceThe stream that will be tracked.
num: u128The number of values that will be accessed.
rate: DurationThe 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
impl RefUnwindSafe for Tracking[src]
impl Send for Tracking[src]
impl Sync for Tracking[src]
impl Unpin for Tracking[src]
impl UnwindSafe for Tracking[src]
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<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool[src]
impl<T> From<T> for T[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>,