rx_core_observable_never

Crates.iorx_core_observable_never
lib.rsrx_core_observable_never
version0.2.0
created_at2026-01-19 11:08:51.229859+00
updated_at2026-01-24 15:03:28.912456+00
descriptionnever observable for rx_core
homepagehttps://github.com/AlexAegis/rx_bevy
repositoryhttps://github.com/AlexAegis/rx_bevy
max_upload_size
id2054294
size9,919
Sandor (AlexAegis)

documentation

https://github.com/AlexAegis/rx_bevy

README

observable_never

crates.io ci codecov license

Never emits and never unsubscribes, only once it's dropped!

Warning: You will be responsible to unsubscribe from subscriptions made to this observable, as it will never do so on its own!

See Also

Example

cargo run -p rx_core --example observable_never_example
let _subscription = never().subscribe(PrintObserver::new("never"));
println!("nothing happens before dropping the subscription!");

Output:

nothing happens before dropping the subscription!
never - unsubscribed
Commit count: 652

cargo fmt