[−][src]Struct rtlola_frontend::ir::InputStream  
Represents an input stream in an RTLola specification.
Fields
name: StringThe name of the stream.
ty: TypeThe type of the stream.
dependent_streams: Vec<Tracking>What streams depend, i.e., access values of this stream.
dependent_windows: Vec<WindowReference>Which sliding windows aggregate values of this stream.
layer: u32Indicates in which evaluation layer the stream is.
memory_bound: MemorizationBoundThe amount of memory required for this stream.
reference: StreamReferenceThe reference pointing to this stream.
Trait Implementations
impl Clone for InputStream[src]
pub fn clone(&self) -> InputStream[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for InputStream[src]
impl Eq for InputStream[src]
impl PartialEq<InputStream> for InputStream[src]
pub fn eq(&self, other: &InputStream) -> bool[src]
pub fn ne(&self, other: &InputStream) -> bool[src]
impl Stream for InputStream[src]
pub fn eval_layer(&self) -> u32[src]
pub fn is_input(&self) -> bool[src]
pub fn values_to_memorize(&self) -> MemorizationBound[src]
pub fn as_stream_ref(&self) -> StreamReference[src]
impl StructuralEq for InputStream[src]
impl StructuralPartialEq for InputStream[src]
Auto Trait Implementations
impl RefUnwindSafe for InputStream[src]
impl Send for InputStream[src]
impl Sync for InputStream[src]
impl Unpin for InputStream[src]
impl UnwindSafe for InputStream[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>,