Christian Vallentin
Christian Vallentin
Resolves #1007 Questions: - Should we `#[doc(hidden)]` `DisplaySome` and `DisplaySomeOr`? - Should we move them into a separate module? (Maybe `#[doc(hidden)]` that?) - Maybe even expand it to also hide...
The question of how to render a `Option` comes up every now and then. So I think it's time to provide a simpler built-in solution. - Related #717 - Partially...
_(Thanks for `bpaf` it's the only command-line parser that I tested supporting adjacent commands)_ This is already supported by the combinatoric API. However, there is an implicit short or long...
Title and code says it all :)
Changed the `#![cfg(unix)]` into multiple `#[cfg(unix)]`, to allow the doctests to compile on Windows
The title says it all. I refactored `find()` and removed the recursion.
Given the following YAML: ```yaml env: foo: 123 ``` - It successfully deserializes, when `env: HashMap` is inside a `struct` - It fails to deserialize if inside an `untagged` `enum`...
Crossing my fingers that this is intentional behavior, but simply not documented. Because I was searching for a way to get the JSON data without first writing it to disk.
This might be a personal preference, but I usually have `MouseButton` imported, which would make it easier to do `MouseButton::Left`, compared to importing `glfw::MouseButtonLeft`. Additionally, this is also _sliiiightly_ "safer"...