Bradley Odell

Results 19 issues of Bradley Odell

Code example: ```rust #[derive(Serialize, Deserialize, Clone)] pub struct MyJson { pub name: String, #[serde(skip_serializing_if = "Map::is_empty")] #[serde(default)] pub args: Map, #[serde(skip_serializing_if = "Option::is_none")] #[serde(default)] pub config: Option, } ``` Compile...

I have noticed that rustfmt seems to prioritize breaking chains before it'll break on function arguments. For example: ```rust let value = obj.func(&long_struct.arg1, long_struct.arg2, long_struct.arg3, true); ``` is preferred instead...

feature-request

**Describe the bug** OS: Windows 10 `sysinfo` version: v0.30.5 When running a small Rust binary that uses `sysinfo` to print out process stats, I noticed that the reported virtual memory...

bug
windows

Closes #142 I haven't added any tests yet because I didn't know which test files to add them to. I'd like to just add a couple smoke tests.

Flume has: 1. `flume::Sender::send`: block until space is available 2. `flume::Sender::send_async`: block until space is available (but async) 3. `flume::Sender::try_send`: attempt to send, fail otherwise I propose adding a new...

Would it be possible to add a weak reference type to this library that doesn't include a lifetime parameter? I've been trying to create something similar to "Box" but with...

Hello, my name is Bradley. I've recently been given collaborator access by Wouter (owner) to help with maintaining this package as it's been neglected since early 2018. I have already...

planning

The latest documentation of the crate reads: ``` For Bytes implementations which point to a reference counted shared storage (e.g. an Arc), sharing will be implemented by increasing the reference...

This isn't an issue with the `pgautoupgrade` project, but I wanted to bring attention to the breaking change when pairing Postgres 18 with Debian Trixie. It would have been a...