rx_core_observable_just 0.1.2

just observable for rx_core; emits a single value
Documentation

observable_just

crates.io ci codecov license

Immediately emits a single value.

See Also

Example

cargo run -p rx_core --example observable_just_example
let _s = just("hello").subscribe(PrintObserver::new("just"));

Output:

just - next: "hello"
just - completed
just - unsubscribed