i509VCB
i509VCB
I noticed the structs generated, such as `__GLSync`, are generated as follows: ```rust #[doc(hidden)] pub struct __GLsync { _priv: u8, } ``` Although this type is only ever used as...
It is nice there are methods to output the binary MIR format via a writer function as described by `MIR_write_with_func` which is helpful for bindings to other languages where passing...
At the moment I don't see a way to take DuplexConn or the higher level RpcConn and get the file descriptor(s) that I can use in epoll for not blocking...
This can be made with an Injector mixin that always cancels the rest of the function (at head) and possibly returns a different value. This is effectively an overwrite with...
This allows more easily setting arguments that may come from an OsString like a path from `pkg-config`
Essentially introduce const where appropriate for the public types exposed by the api. This request intentionally only targets some functions since we don't have stable `&mut` in const contexts along...
The entity package is quite messy as some classes are vaguely related to some categories. The package coukd use some organization. I will have a proposal written up in an...
- [x] summary of problem I have been working on migrating a project to use spotless for license headers. The project hasn't been great on keeping license headers up to...
I am using inotify with calloop and one issue I've noticed is the lack of ability to easily convert an event from the methods into an owned event to pass...
Clippy adds quite a few interesting lints that may be useful to have. At the moment running clippy has 4 errors, mostly redundant field names in initialization. Clippy does also...