Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Compiler warns about unused code for private functions that are actually used

rust

How to handle errors when extracting data from untyped JSON in serde_json?

json rust serde serde-json

wrestling with borrow checker

rust

How can I pattern match to get at the numbers that serde_json has parsed?

json rust serde

rust compiler "error: no matching package named `*` found" though it should be present

rust

What are all the different error types in Rust?

error-handling rust

the `?` operator can only be used in an async block that returns `Result` or `Option

rust reqwest

What does <'_> mean in Rust?

rust syntax

Thread '<main>' has overflowed its stack when allocating a large array using Box

Why can I not use a slice pattern to filter a Window iterator?

rust closures

How do I fix "ld: error: unable to find library -lgcc" when cross-compiling rust to android?

How to render an image on cairo::Context in gtk-rs

gtk rust

Compiling bevy_dylib v0.5.0 error: linking with `cc` failed: exit status: 1

rust bevy

Converting a BoxStream into BoxFuture

compiler-errors rust

What optimizations does the Rust compiler make with `loop` versus `while true`?

"cannot borrow `graph` as immutable because it is also borrowed as mutable." How can I let Rust know that I'm done with that mutable borrow? [duplicate]

How to bind lifetimes of Futures to fn arguments in Rust

Function to sample N elements from array

random rust std

cannot assign to `*x` because it is borrowed

Vec<> push & concat vs append vs extend_from_slice

rust