djrenren

Results 10 issues of djrenren

This pull requests allows for use of precedence annotations inside macro definitions: ``` grammar; Nothing: u32 = {} Expr: u32 = { #[precedence(level="0")] B, #[precedence(level="1")] #[assoc(side="left")] "*" => 0, }...

Now that const generics are stable, we could have a `pub struct BV

If i have ```rust #[repr(C)] enum Foo { A(B) } ``` `cbindgen` will produce a struct: ``` struct A_Body { B 0; } ``` which is not valid C++

bug

**Describe the bug** The outline-only icon is off-center by 1 pixel. OSX-Firefox ![off-center](https://user-images.githubusercontent.com/634666/49250885-e6776200-f3d4-11e8-9e7f-75672a0a3246.png) Probably just a really dumb math thing happening.

bug
wontfix

It looks like the parameter to `request_body` is dumbly translated to a string. This means, if you write a non-existant type there, it will happily accept that. We should emit...

enhancement

I'm not entirely sure exactly why this happens but here's a minimal repro: ```rust use rocket::{get, request::FromParam}; use utoipa::IntoParams; #[derive(IntoParams)] pub struct Foo { foo: T, } impl for Foo...

Rocket Version: 0.5.0-rc.3 **Description** `FromData` implementation for `Option` causes malformed bodies to be silently ignored. **To Reproduce** Sometimes a route handler needs to support an optional request body (for example,...

suggestion

**Describe the bug** The `ObservableV2` class allows the specification of a type which defines the set of events and callbacks, but the template is overly permissive. Namely, the `EVENT` parameter...

bug

**Describe the bug** If you have an active toolbox session and you try to reboot the host machine, the container will refuse to shutdown. Eventually it will timeout and systemd...

1. Bug

Hi, I wanted to take a crack at getting theory parsing working to fix https://github.com/facebookincubator/smt2utils/issues/15. Before I went to the trouble of implementing all the parser rules and concrete syntax...

CLA Signed