| Crates.io | rx_core_observable_just |
| lib.rs | rx_core_observable_just |
| version | 0.2.0 |
| created_at | 2026-01-19 10:33:41.855782+00 |
| updated_at | 2026-01-24 15:03:14.536957+00 |
| description | just observable for rx_core; emits a single value |
| homepage | https://github.com/AlexAegis/rx_bevy |
| repository | https://github.com/AlexAegis/rx_bevy |
| max_upload_size | |
| id | 2054201 |
| size | 10,586 |
Immediately emits a single value.
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