Enum dvcompute_results::simulation::results::ResultObservable[][src]

pub enum ResultObservable {
    Empty,
    Unknown,
    Observable(ObservableBox<()>),
    ObservableMix(ObservableBox<()>),
}
Expand description

Whether an object containing the results emits a signal notifying about change of data.

Variants

Empty

There is no signal at all.

Unknown

The signal is unknown, but the entity probably changes.

Observable(ObservableBox<()>)

Tuple Fields

When the signal is precisely specified.

ObservableMix(ObservableBox<()>)

Tuple Fields

When the specified signal was combined with unknown signal.

Implementations

Construct a new result observable by the specified optional pure observable.

Return an empty observable.

Merge two observables.

Return a pure signal as a result of combination of the predefined signals with the specified result signal usually provided by the sources.

The signal returned is triggered when the source signal is triggered. The pure signal is also triggered in the integration time points if the source signal is unknown or it was combined with any unknown signal.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.