Skip to main content

Flux

Trait Flux 

Source
pub trait Flux<I, E>:
    Stream<Item = Result<I, E>>
    + Unpin
    + ConditionallySendSync { }
Expand description

Re-export of wasmrs_rx traits and core types. A generic trait to wrap over Flux, Mono, and supporting types.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<I, E, T> Flux<I, E> for T
where T: Stream<Item = Result<I, E>> + Unpin + ConditionallySendSync,