Iskandarov Lev

Results 13 comments of Iskandarov Lev

If you add `expand: names`, you'll have something like this in response: ```json { "expand": "schema,names", "startAt": 0, "maxResults": 50, "total": 7, "issues": [], "names": {} } ``` And as...

Use cases: 1. Async drop. Instead of implementing async drop, you can forbid drop for the type and implement async fn method that must be called instead of dropping. 2....

Hi, this is very strange, because unix systems must release all the resources (including binded ports), if the process is killed. I tried to test this on ubuntu, and for...

I'm currently making a library, which will codegen routing functions for actix into `tonic` service. It is in early stages of development, but you can follow my work here: https://github.com/blockscout/actix-prost...

That works only for `serde_json`(?), but in my example sadly it's actually two different deserializers (one is json and one is path extractor from actix) Is there something stopping me...

Aha, I see The problem is that deserializer works by calling visitor function, which takes the visitor and returns value (or error) And you can't call it twice sadly (because...

Ok, I found a way. `ServiceGenerator` accepts `buf`, which actually contains all generated code (_for this file_), so we can parse it into `syn::File`, and then search for all `syn::ItemStruct`....

Hello, I'm very interested in this feature and would like to help with anything: reviewing, discussion, implementing some of the features.

Hi, is there any progress or comments about this issue? Does github not support more that 1000 releases? Will it support it?

This isn't very critical for us, so if there is an easy fix, I could may be help, but if there isn't, may be just keep this issue open until...