Davi Silva

Results 7 comments of Davi Silva

What happened to @nikomatsakis's [proposal](http://smallcultfollowing.com/babysteps/blog/2015/08/20/virtual-structs-part-3-bringing-enums-and-structs-together/)? I'm trying to create a general UI framework for Rust, basically based on [push-pull FRP](http://conal.net/papers/push-pull-frp/push-pull-frp.pdf). There's no way to do it, however, because there's no...

Tested [demo](http://daniel3735928559.github.io/guppy/site/) on Chrome on Android 4.4.4. - A custom keyboard does not show up, and neither does the system's keyboard; can't input. The settings, keyboard and help button on...

I was having the same issue, but wrapping the app root with `` solved this, [as per RNGH's docs](https://docs.swmansion.com/react-native-gesture-handler/docs/installation/#js).

Hi @DenisKolodin! I'd like to work on this one, but I'm a bit unfamiliar with the code. Perhaps you could give me some directions on gitter? If possible, just ping...

Cool! Not entirely sure on design myself, but here's one possibility (for the user-facing part at least): ```rust use wiremock::ws::*; Mock::given(ws::Upgrade) // new kind of matcher .and(path("/hello_ws")) // this could...

I figured something similar, but WebSockets specific (e.g. `WsRespond`). I think the more generic approach above could be even better, as long as some attention is paid to the possibility...

An advantage of forgoing the generic approach would be handlers/implementors getting typed messages (e.g. `Text(..)`, `Binary(..)`, `Ping(..)` etc for WS) instead of raw bytes, although this could potentially be addressed...