Pavel Strakhov

Results 24 issues of Pavel Strakhov

I need something like this: ``` input type="radio" name="f" value="a" checked=(value == 'a'); input type="radio" name="f" value="b" checked=(value == 'b'); ``` This doesn't work because it just generates `checked="true"` or...

question
documentation

## Expected Behavior This is a minimal example of a client that reproduces the problem: ``` [dependencies] tokio = { version = "1.0", features = ["full"] } reqwest = {...

C-bug
A-http

Interesting options: - 32-bit Linux, Windows, and OSX; - Windows with MSVC toolchain other than 14 (VS 2015).

type: testing

Theoretically, mobile platform support (iOS, Android) would be nice, since both Qt and Rust support them on some level.

type: feature

Qt only have "Q" prefix, but other libraries or parts of libraries may have different prefixes. Rust's crate and module system makes prefixes useless, so we should remove them whenever...

type: feature

Wrap `qobject_cast` similar to `dynamic_cast`.

type: feature

Let's have a C++ class that can be subclassed: ``` class Example { public: Example(int x); virtual ~Example(); virtual int vfunc2(double y); protected: void func1(); }; ``` First, we create...

type: feature

The generator can say which documentation entries were left unused. It currently generates too much noise, but it can be reduced. - Filter out tutorials (or at least anything that...

`QObject` subclasses can have custom properties, but I'm not sure it needs to be doable from Rust.

- Check parsing C++ documentation for fields - Generate appropriate text in rustdoc

type: bug