Austin Jones

Results 56 issues of Austin Jones

Hello, Aerospike is a great database! Master-master replication is very cool. But we are struggling to write Rust code that interfaces it. We are getting stuck on serialization and deserialization...

If the aerospike client implemented TryFrom, it would be much easier to unpack Values. It would be much easier to write this: ``` let field: i64 = value.try_into()? ``` Rather...

If Accept is not set, return JSON. Check for HTML and XML accept headers, and return data in those formats if set.

### Summary I ran into a case where assigning_clones is unhelpful, and most of our test modules are going to need `#[allow(clippy::assigning_clones)]`. This occurs when a test struct is initialized...

C-bug
I-false-positive

Hey @audunhalland, another associated type issue here! ``` #[entrait::entrait] pub trait Client { type DatabaseImpl; fn database(&self, name: &str) -> Self::DatabaseImpl; } ``` The associated type disappears from the generated...