| Crates.io | rx_core_operator_materialize |
| lib.rs | rx_core_operator_materialize |
| version | 0.2.0 |
| created_at | 2026-01-19 17:12:45.384454+00 |
| updated_at | 2026-01-24 15:08:23.191315+00 |
| description | materialize operator for rx_core |
| homepage | https://github.com/AlexAegis/rx_bevy |
| repository | https://github.com/AlexAegis/rx_bevy |
| max_upload_size | |
| id | 2054985 |
| size | 14,088 |
Turn next/error/complete into notification values.
Into.Never signals into concrete types.cargo run -p rx_core --example operator_materialize_example
let _subscription = (1..=5)
.into_observable()
.materialize()
.subscribe(PrintObserver::new("materialize_operator"));
Output:
materialize_operator - next: Next(1)
materialize_operator - next: Next(2)
materialize_operator - next: Next(3)
materialize_operator - next: Next(4)
materialize_operator - next: Next(5)
materialize_operator - next: Complete
materialize_operator - completed
materialize_operator - unsubscribed