Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

If f32 is not Eq, why does this compile?

In Rust, is there any way to change a struct/type to be "Send"?

rust

Is there a way to put a type name into a Rust macro?

rust

How can a macro match any token tree except comma

rust macros rust-macros

Read Childstdout without blocking

rust rust-tokio

Can I store an `impl Future` as a concrete type?

How can std::thread::JoinHandle::join catch panics?

rust

How to determine the resulting type of a Rust iterator?

rust

Generic function to parse numbers fails with "FromStr is not implemented"

generics rust

Expected generic type, but found concrete type (that implements trait bound)

generics rust

How to panic when a NaN is created?

rust nan

Set of Rc<T> where T isn't Hash or Ord?

rust

How do I idiomatically compare each item in a list to every other item?

rust

Pass a transaction to a function and do a query

sqlite rust rust-sqlx

How can I assign "metadata" to a trait?

rust rust-macros

Why is rand::Rng able to work in a no-std environment even when I have not set default-features = false?

rust bare-metal

Tokio & serde: deserializing JSON

Increment last element of Vec<usize>

vector rust increment

How can I use a closure that has mutably captured a variable in a loop that checks the same value?

rust closures

Why serde_json rust so slow when deserializing in Untagged Enums

rust serde