pub struct EnqueueWithIntegTimes<F> { /* private fields */ }Expand description
Enqueues the events which handlers should be actuated in the integration time points.
Trait Implementations§
Source§impl<F: Clone> Clone for EnqueueWithIntegTimes<F>
impl<F: Clone> Clone for EnqueueWithIntegTimes<F>
Source§fn clone(&self) -> EnqueueWithIntegTimes<F>
fn clone(&self) -> EnqueueWithIntegTimes<F>
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 moreSource§impl<F> Event for EnqueueWithIntegTimes<F>
impl<F> Event for EnqueueWithIntegTimes<F>
Source§fn into_process(self) -> EventIntoProcess<Self>where
Self: Sized,
fn into_process(self) -> EventIntoProcess<Self>where
Self: Sized,
Convert to the
Process computation.Source§fn into_composite(self) -> EventIntoComposite<Self>where
Self: Sized,
fn into_composite(self) -> EventIntoComposite<Self>where
Self: Sized,
Convert to the
Composite computation.Source§fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
Bind the current computation with its continuation within the resulting computation.
Source§fn map<B, F>(self, f: F) -> Map<Self, B, F>
fn map<B, F>(self, f: F) -> Map<Self, B, F>
Map the current computation using the specified transform.
Source§fn zip<U>(self, other: U) -> Zip<Self, U>
fn zip<U>(self, other: U) -> Zip<Self, U>
Zip the current computation with another one within the resulting computation.
Source§fn run_in_start_time(self) -> RunInStartTime<Self>where
Self: Sized,
fn run_in_start_time(self) -> RunInStartTime<Self>where
Self: Sized,
Run the computation in the start time.
Source§fn run_in_start_time_by(
self,
including_current_events: bool,
) -> RunInStartTime<Self>where
Self: Sized,
fn run_in_start_time_by(
self,
including_current_events: bool,
) -> RunInStartTime<Self>where
Self: Sized,
Run the computation in the start time by processing the current events or not.
Source§fn run_in_stop_time(self) -> RunInStopTime<Self>where
Self: Sized,
fn run_in_stop_time(self) -> RunInStopTime<Self>where
Self: Sized,
Run the computation in the stop time.
Source§fn run_in_stop_time_by(
self,
including_current_events: bool,
) -> RunInStopTime<Self>where
Self: Sized,
fn run_in_stop_time_by(
self,
including_current_events: bool,
) -> RunInStopTime<Self>where
Self: Sized,
Run the computation in the stop time by processing the current events or not.
Auto Trait Implementations§
impl<F> Freeze for EnqueueWithIntegTimes<F>where
F: Freeze,
impl<F> RefUnwindSafe for EnqueueWithIntegTimes<F>where
F: RefUnwindSafe,
impl<F> Send for EnqueueWithIntegTimes<F>where
F: Send,
impl<F> Sync for EnqueueWithIntegTimes<F>where
F: Sync,
impl<F> Unpin for EnqueueWithIntegTimes<F>where
F: Unpin,
impl<F> UnwindSafe for EnqueueWithIntegTimes<F>where
F: UnwindSafe,
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