I have created a SplitSink<WebSocketStream<MaybeTlsStream<TcpStream>>, Message> via
let (write, read) = ws_stream.split();
How can I see which methods are available for write? The documentation for SplitSink doesn't actually list any methods: it just lists a long list of traits, and I have to click on each and every one of them?
How can I simply find out how to write to it?