dioxus_liveview

Trait WebsocketRx

Source
pub trait WebsocketRx: StreamExt<Item = Result<String, LiveViewError>> { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> WebsocketRx for T
where T: StreamExt<Item = Result<String, LiveViewError>>,