[][src]Enum rtlola_frontend::ty::StreamTy

pub enum StreamTy {
    Event(Activation<NodeId>),
    RealTime(Freq),
    Infer(Vec<NodeId>),
}

The possible stream types describing the temporal behavior of a stream.

Variants

Event(Activation<NodeId>)

An event stream with the given dependencies

RealTime(Freq)

A real-time stream with given frequency

Infer(Vec<NodeId>)

INTERNAL USE: The type of the stream should be inferred as the conjunction of the given StreamTy

Trait Implementations

impl Clone for StreamTy[src]

impl Debug for StreamTy[src]

impl Display for StreamTy[src]

impl Eq for StreamTy[src]

impl Hash for StreamTy[src]

impl PartialEq<StreamTy> for StreamTy[src]

impl PartialOrd<StreamTy> for StreamTy[src]

impl StructuralEq for StreamTy[src]

impl StructuralPartialEq for StreamTy[src]

Auto Trait Implementations

impl !RefUnwindSafe for StreamTy

impl Send for StreamTy

impl Sync for StreamTy

impl !Unpin for StreamTy

impl !UnwindSafe for StreamTy

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> ToString for T where
    T: Display + ?Sized
[src]

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.