Struct dvcompute::simulation::observable::NewInStopTime

source ·
pub struct NewInStopTime {}
Expand description

Trigger a signal in the stop time point.

Trait Implementations§

source§

impl Clone for NewInStopTime

source§

fn clone(&self) -> NewInStopTime

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Event for NewInStopTime

§

type Item = ObservableBox<f64>

The type of the item that is returned in the current modeling time.
source§

fn into_process(self) -> EventIntoProcess<Self>
where Self: Sized,

Convert to the Process computation.
source§

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>
where Self: Sized, U: Event, F: FnOnce(Self::Item) -> U,

Bind the current computation with its continuation within the resulting computation.
source§

fn map<B, F>(self, f: F) -> Map<Self, B, F>
where Self: Sized, F: FnOnce(Self::Item) -> B,

Map the current computation using the specified transform.
source§

fn zip<U>(self, other: U) -> Zip<Self, U>
where Self: Sized, U: Event,

Zip the current computation with another one within the resulting computation.
source§

fn ap<U, B>(self, other: U) -> Ap<Self, U, B>
where Self: Sized, Self::Item: FnOnce(U::Item) -> B, U: Event,

The function application.
source§

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,

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,

Run the computation in the stop time.
source§

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.
source§

fn into_boxed(self) -> EventBox<Self::Item>
where Self: Sized + 'static,

Convert into a boxed value.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<M> IntoEvent for M
where M: Event,

§

type Event = M

The target computation.
§

type Item = <M as Event>::Item

The type of item that is returned by the computation.
source§

fn into_event(self) -> <M as IntoEvent>::Event

Convert to the Event computation.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V