pub struct CompleteMode { /* private fields */ }Expand description
Represents the final mode.
This struct represents the final mode and indicates that the RtLolaHir has passed all analyzes and now contains all information. This mode has the same functionality as all the previous modes put together.
Trait Implementations§
Source§impl Clone for CompleteMode
impl Clone for CompleteMode
Source§fn clone(&self) -> CompleteMode
fn clone(&self) -> CompleteMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompleteMode
impl RefUnwindSafe for CompleteMode
impl Send for CompleteMode
impl Sync for CompleteMode
impl Unpin for CompleteMode
impl UnwindSafe for CompleteMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DepAnaTrait for Twhere
T: DepAnaTraitWrapper,
impl<T> DepAnaTrait for Twhere
T: DepAnaTraitWrapper,
Source§fn direct_accesses(&self, who: StreamReference) -> Vec<StreamReference>
fn direct_accesses(&self, who: StreamReference) -> Vec<StreamReference>
Returns all streams that are direct accessed by
who Read moreSource§fn direct_accesses_with(
&self,
who: StreamReference,
) -> Vec<(StreamReference, Vec<(Origin, StreamAccessKind)>)>
fn direct_accesses_with( &self, who: StreamReference, ) -> Vec<(StreamReference, Vec<(Origin, StreamAccessKind)>)>
Returns all streams that are direct accessed by
who together with the corresponding stream access kinds. Read moreSource§fn transitive_accesses(&self, who: StreamReference) -> Vec<StreamReference>
fn transitive_accesses(&self, who: StreamReference) -> Vec<StreamReference>
Returns all streams that are transitive accessed by
who Read moreSource§fn direct_accessed_by(&self, who: StreamReference) -> Vec<StreamReference>
fn direct_accessed_by(&self, who: StreamReference) -> Vec<StreamReference>
Returns all streams that direct access
who Read moreSource§fn direct_accessed_by_with(
&self,
who: StreamReference,
) -> Vec<(StreamReference, Vec<(Origin, StreamAccessKind)>)>
fn direct_accessed_by_with( &self, who: StreamReference, ) -> Vec<(StreamReference, Vec<(Origin, StreamAccessKind)>)>
Returns all streams that direct access
who together with the corresponding stream access kinds. Read moreSource§fn transitive_accessed_by(&self, who: StreamReference) -> Vec<StreamReference>
fn transitive_accessed_by(&self, who: StreamReference) -> Vec<StreamReference>
Returns all streams that transitive access
who Read moreSource§fn aggregated_by(
&self,
who: StreamReference,
) -> Vec<(StreamReference, Origin, WindowReference)>
fn aggregated_by( &self, who: StreamReference, ) -> Vec<(StreamReference, Origin, WindowReference)>
Returns all windows that aggregate
who and the stream that uses the window Read moreSource§fn aggregates(
&self,
who: StreamReference,
) -> Vec<(StreamReference, Origin, WindowReference)>
fn aggregates( &self, who: StreamReference, ) -> Vec<(StreamReference, Origin, WindowReference)>
Returns all windows that are used in
who and the corresponding stream that is aggregated Read moreSource§fn graph(&self) -> &StableGraph<StreamReference, EdgeWeight>
fn graph(&self) -> &StableGraph<StreamReference, EdgeWeight>
Returns the (Dependency Graph)DependencyGraph of the specification
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MemBoundTrait for Twhere
T: MemBoundTraitWrapper,
impl<T> MemBoundTrait for Twhere
T: MemBoundTraitWrapper,
Source§fn memory_bound(&self, sr: StreamReference) -> MemorizationBound
fn memory_bound(&self, sr: StreamReference) -> MemorizationBound
Returns the memory bound of the given stream Read more
Source§fn num_buckets(&self, wr: WindowReference) -> MemorizationBound
fn num_buckets(&self, wr: WindowReference) -> MemorizationBound
Returns the memory bound of the given sliding window Read more
Source§fn bucket_size(&self, wr: WindowReference) -> Duration
fn bucket_size(&self, wr: WindowReference) -> Duration
Returns the time per bucket of a sliding window. Read more
Source§impl<T> OrderedTrait for Twhere
T: OrderedTraitWrapper,
impl<T> OrderedTrait for Twhere
T: OrderedTraitWrapper,
Source§fn stream_layers(&self, sr: StreamReference) -> StreamLayers
fn stream_layers(&self, sr: StreamReference) -> StreamLayers
Returns the StreamLayers of the given stream Read more
Source§impl<T> TypedTrait for Twhere
T: TypedTraitWrapper,
impl<T> TypedTrait for Twhere
T: TypedTraitWrapper,
Source§fn stream_type(&self, sr: StreamReference) -> StreamType
fn stream_type(&self, sr: StreamReference) -> StreamType
Returns the StreamType of the given stream Read more
Source§fn is_periodic(&self, sr: StreamReference) -> bool
fn is_periodic(&self, sr: StreamReference) -> bool
Returns true if the given stream has a periodic evaluation pacing Read more
Source§fn is_event(&self, sr: StreamReference) -> bool
fn is_event(&self, sr: StreamReference) -> bool
Returns true if the given stream has a event-based evaluation pacing Read more
Source§fn expr_type(&self, eid: ExprId) -> StreamType
fn expr_type(&self, eid: ExprId) -> StreamType
Returns the StreamType of the given expression Read more
Source§fn get_parameter_type(
&self,
sr: StreamReference,
idx: usize,
) -> ConcreteValueType
fn get_parameter_type( &self, sr: StreamReference, idx: usize, ) -> ConcreteValueType
Source§fn eval_pacing_type(
&self,
sr: StreamReference,
idx: usize,
) -> ConcretePacingType
fn eval_pacing_type( &self, sr: StreamReference, idx: usize, ) -> ConcretePacingType
Returns the ConcretePacingType of the given stream Read more