rx_core_operator_materialize

Crates.iorx_core_operator_materialize
lib.rsrx_core_operator_materialize
version0.2.0
created_at2026-01-19 17:12:45.384454+00
updated_at2026-01-24 15:08:23.191315+00
descriptionmaterialize operator for rx_core
homepagehttps://github.com/AlexAegis/rx_bevy
repositoryhttps://github.com/AlexAegis/rx_bevy
max_upload_size
id2054985
size14,088
Sandor (AlexAegis)

documentation

https://github.com/AlexAegis/rx_bevy

README

operator_materialize

crates.io ci codecov license

Turn next/error/complete into notification values.

See Also

Example

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
Commit count: 652

cargo fmt