Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Is it possible to get the name of a struct using one of its methods? [duplicate]

reflection types rust

How do I pass an async callback containing an argument that is a reference?

rust async-await lifetime

Install/update globally from github source instead of crates.io

rust rust-cargo

Run long running async function in background after returning response

rust async-await actix-web

How to custom condition compile and passing argument by cargo?

rust rust-cargo

How do I sort `NaN` so that it is greater than any other number, and equal to any other `NaN`?

sorting floating-point rust

"expected type parameter, found struct" when implementing trait

rust

What C type should I use for f64 in my C FFIs?

rust ffi

Temporary value dropped while borrowed when printing `format_args!`

rust borrow-checker

Behavior of Rc when the inner value is mutated

rust

NEAR smart contract rust Error: "Cannot deserialize value with Borsh"

How to reuse Tokio runtime in Rust FFI library

rust ffi rust-tokio

How to update a yaml file with dynamic properties in Rust?

serialization rust yaml

How to combine latest values of two streams using futures-rs?

rust

tokio::try_join! doesn't return the Err variant when one of the tasks returns Err?

rust async-await rust-tokio

Using Box<> with HashMap<> in Rust

rust hashmap

Passing nested struct field path as macro parameter

rust rust-macros

Use more than one letter in short-value

How to test instantiation of struct in Rust?

unit-testing struct rust

What is the cleanest way to return the error when matching a Result<T, E>? [duplicate]

error-handling rust