dioxus_liveview

Trait WebsocketTx

Source
pub trait WebsocketTx: SinkExt<String, Error = 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> WebsocketTx for T
where T: SinkExt<String, Error = LiveViewError>,