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

Object Safety§

This trait is not object safe.

Implementors§

source§

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