pub trait ObservableOutput {
type Out: Signal;
type OutError: Signal;
}Expand description
§ObservableOutput
Defines the outputs of an Observable. Also used for [Operator]s to define the new outputs once the operator is applied.
pub trait ObservableOutput {
type Out: Signal;
type OutError: Signal;
}Defines the outputs of an Observable. Also used for [Operator]s to define the new outputs once the operator is applied.