Kestrer

Results 22 issues of Kestrer

C-WORD-ORDER requires that errors be named `VerbNounError`. However, this doesn't work for cases where there is no verb, for example in getters: ```rust impl Response { fn bytes(self) -> Result...

[Standback](https://crates.io/crates/standback) allows for newer Rust std APIs to be used from older versions of Rust. Features should additionally have a standback badge if they are not supported in the version...

At the moment using HTML tags in comments doesn't work: ![ejs-comments](https://user-images.githubusercontent.com/38139193/87041250-e020ad00-c1e9-11ea-99cf-d8b69db67428.png)

I'm pretty sure this crate ends up aliasing mutable references, as each future, when polled, holds a mutable reference to the data at the same time as the linked list...

Support interfaces that are objects and a union, to avoid repeating the interface fields for each implementation. Example: ```rust #[Interface] struct Character { name: String, __implementations: CharacterTypes, } #[Union] enum...

Stale

Crossterm currently doesn't have a way to change the style of the user's cursor (e.g. bar vs block vs underscore) - it allows to toggle blinking but nothing more. I...

I am writing an application in which I need to poll for an event at the same time as reading user input. I could do this with two threads: one...

This PR improved the implementation of `ask_password` by using `bw --raw`, which makes parsing the output unnecessary as it just gives us the raw data I also use `bw --nointeraction`...

@kangalioo, @danielhenrymantilla and I have been trying to figure out how to use the playground to run procedural macros, for [a Discord bot](https://github.com/kangalioo/rustbot). The code so far looks like this:...

`ServiceExt::and_then` already exists, so it makes sense to also have an `or_else` that goes from `Self::Error -> Result`. Concrete use case: Axum currently has to redefine this itself in [`Layered::handle_error`](https://docs.rs/axum/0.1/axum/routing/struct.Layered.html#method.handle_error),...