Gnome!

Results 39 issues of Gnome!

I've got some columns which are never 0, so it would be useful to implement `FromRow` for `Option`, where a zero value returns `None`. This allows for niche optimizations and...

### Description Running my 36k guild bot, infrequently I get warnings to the tune of ``` [serenity::gateway::ws]: Err deserializing text: Json(Error("invalid value: integer -1, expected u64", line: 0, column: 0));...

bug
synced

A lot of the methods on Request and AttachmentType were only given references or mutable references to their data, instead of taking owned data. This was unnecessary and caused a...

model
http

This is iffy on whether to merge or not, I just thought it would be a cool idea and it seems to work MSRV-wise.

model
collector

This removes unnecessary `asserts` in the methods, and allows for niche optimization. I had to remove the `Default` implementation from TimeBase, but that makes no sense anyway as it just...

This fixes existing clippy warnings, with a lot of them triggered by test code. I guess clippy wasn't run before to find these test warnings, and then the existing warnings...

- Reduces macro magic in the case of replacing with `once_cell::sync::Lazy` and removes a lot of lines due to no indentation required. - Improves runtime performance in the case of...

In my bot, I am feeding gTTS URLs to lavalink manually as is supported. However recently I discovered that the 429 IP block proxy is only used for Youtube queries....

enhancement

The safe function `FileAccessor::read` takes a `out_buf: *mut T` and from the documentation "Reads data in the given buffer". This should be unsafe as undefined behavior could be triggered by...

The default NRO example fails to build with ```rs error[E0412]: cannot find type `LmLogger` in module `log`witch_example(bin) --> src/main.rs:31:20 | 31 | diag_log!(log::LmLogger { log::LogSeverity::Trace, false } => "Hello world!");...