| Crates.io | rx_core_observer_print |
| lib.rs | rx_core_observer_print |
| version | 0.2.0 |
| created_at | 2026-01-19 12:03:29.650769+00 |
| updated_at | 2026-01-24 15:04:14.880258+00 |
| description | print observer for rx_core, it prints out received values |
| homepage | https://github.com/AlexAegis/rx_bevy |
| repository | https://github.com/AlexAegis/rx_bevy |
| max_upload_size | |
| id | 2054434 |
| size | 10,788 |
Print all observed signals to stdout for quick debugging.
cargo run -p rx_core --example observer_print_example
let _subscription = just(1).subscribe(PrintObserver::new("hello"));
Output:
hello - next: 1
hello - completed
hello - unsubscribed