Thomas B
Thomas B
Resolves #123 Channel contains the Arc so that ```rust let streaming_stuff = Client::new(init_channel()).some_call(); ``` does not die due to channel being dropped at the end of the line.
Does this support arbitrary size integers? From a quick look at the source code it looks like it does. If that is indeed the case, it might be better to...
This seems to be the case now: https://github.com/petgraph/petgraph/blob/9ff688872b467d3e1b5adef19f5c52f519d3279c/src/dot.rs#L100
Sometimes there are mutations input structures with tons of options which we don't want to specify one by one which have an enums as field, and this: https://github.com/graphql-rust/graphql-client/blob/32cd3c75b1706233036fb0cd952f0135d8def245/graphql_client_codegen/src/codegen/enums.rs#L22 breaks compilation...
Can't write `if some_field == SomeEnum::XXX` because PartialEq is not derived on generated enums. This should be very easy to implement.
[`GraphQLQuery::Variables`](https://docs.rs/graphql_client/0.9.0/graphql_client/trait.GraphQLQuery.html#associatedtype.Variables) is the way currently used to represent that some type is, once serialized, a correct `variables` set for the given query. However we could imagine that several structures, once...
As per the documentation: ``` graphql-client introspect-schema --help graphql-client-introspect-schema 0.9.0 Get the schema from a live GraphQL API. The schema is printed to stdout USAGE: graphql-client introspect-schema [OPTIONS] FLAGS: -h,...
The library provides lots of way to build Sendgrid queries that have zero chance to succeed: Examples: ```rust sender.send(&Message::new())?; ``` ```rust sender.send(&Message::new() .set_from(self.from.clone()) .set_subject(subject) .add_personalization(Personalization::new().add_to(Email::new().set_email(to_email))) .add_content(Content::new().set_value(body)))?; ``` ```rust sender.send(&Message::new() .set_subject(subject)...
`#[derive(QueryId)]` will be provided as a default config parameter in the diesel.toml config, so we should not manage it on our end anymore. This is a breaking change, so we...
Hello, I'm trying to use fauxcon as a virtual keyboard on my Ubuntu 16.04. When I create the virtual keyboard (`sudo fauxcon -C`) and leave it running, it's listed in...