Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Convert Option<Result<T, E>> to Option<T>

rust

documentation links show as unused imports

rust rustdoc

Creating a fixed-size array on heap in Rust

rust

How can I use Serde's custom (de)serialization to update a subset of arbitrary input?

rust serde

How to build json arrays or objects dynamically with serde_json?

rust serde serde-json

How to check directory size?

rust

Taking ownership of HashMap.get() result without cloning

rust

Axum router rejecting CORS OPTIONS preflight with 405 even with CorsLayer

chrono convert DateTime<Utc> to NaiveDate

rust rust-chrono

Why can't const functions in Rust make calls to associated functions?

static rust

trying to trim and lowercase my String in rust

How do I populate a vector of trait objects using an array?

rust

What is the meaing of yield on tokio async rust?

`&` reference, so the data it refers to cannot be borrowed as mutable

rust borrow-checker

A borrow checker problem with a loop and non-lexical lifetimes [duplicate]

rust borrow-checker

How do I replace the file extension of a PathBuf or Path?

path rust

How to split a Vec into two without allocating memory?

serde: deserialize a field based on the value of another field

rust serde

Why does rust consider borrows active in other branches

rust borrow-checker

Rust macro to format variable number of arguments

rust macros