Yuji Kanagawa
Yuji Kanagawa
And then, use variant name to display. e.g. ```rust #[derive(Display)] struct StructWithNoAttr; let s = format!("{}", StructWithNoAttr {}); assert_eq!(&s[..], "StructWithNoAttr"); #[derive(Display)] enum EnumWithNoAttr { A, } let s = format!("{}",...
toml and yaml support native datetime types (see e.g., https://toml.io/en/v1.0.0#offset-date-time). Currently pyserde converts all datetime types to string, which prevents tomli and pyyaml from handling these types directly.
Hi, thank you for this great library. I encountered a problem when creating an `ArrayView` with a pointer and negative strides (see https://github.com/PyO3/rust-numpy/issues/151 for the full context). We can do...
If a variant doesn't have fail attribute, use its' name to display. E.g. ```rust #[derive(Debug, Fail)] struct StructWithNoAttr; #[test] fn struct_with_no_attr() { let s = format!("{}", StructWithNoAttr {}); assert_eq!(&s[..], "StructWithNoAttr");...
Just an idea, but I feel it convenient if they are exposed as public API. I'm using [pip-sync](https://github.com/jazzband/pip-tools/) to install dependencies, so I want to re-use `--no-install` flag for disabling...
For example, we can do ```rust #[args(a, "*", c = 3)] fn get&self, a: i32, b: i32, c: i32) -> PyResult { ... } ``` , where the position of...
https://github.com/rust-lang/rust/issues/39412 Because of this now we cannot complete some builtin macros in `libcore/macros.rs`
https://github.com/rust-lang/rls-vscode/issues/489 has a good screen shot.
https://github.com/racer-rust/racer/blob/1a38903e2640d0cac735f918a858c3596f0222dc/src/racer/ast_types.rs#L39-L47 It's too old and not compatible with current `syntax::ast::TyKind`.
Related: #706, #829 ## General roadmap - [x] for `FnArg` already implemented in #828, #937 ```rust fn f(a: T) { let b = a.clo~ } ``` - [x] for struct...