Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Use of undeclared crate or module with workspaces

rust

How can I get the compiler to warn me of unused code that is marked pub?

rust compiler-warnings

Unable to get field attrs with syn/darling

rust rust-proc-macros

How can I serve static files / a directory in hyper?

server rust hyper

What happens when assigning to the underscore pattern?

rust ownership

Rust std::net::UdpSocket no method named recv_from

rust udp

How to enumerate over columns with tokio-postgres when the field types are unknown at compile-time?

postgresql rust rust-tokio

How to iterate over two elements in a collection stepping by one using Iterator?

rust iterator

How to skip N bytes with Read without allocation? [duplicate]

rust

Create a generic struct with Option<T> without specifying T when instantiating with None

rust

Why is `&self` allowed in the parameters of `&mut self` methods, but not `&mut self`?

rust reference

Is there any way to mitigate a 'borrow may still be in use when generator yields' error in nested generators by using lifetimes?

rust

"Urlencoded payload size is bigger than allowed (default: 256kB)"

rust actix-web

How to copy file with tokio::fs

How do I use an iterator twice inside of the quote! macro?

rust quote

How do I make a Rust program which can be executed without using `cargo run`?

rust rust-cargo

How can I deserialize a comma-separated JSON string as a vector of separate strings? [duplicate]

json rust serde

How to convert OsString into utf-8 encoded string in platform-independent way?

rust character-encoding

Why does my code run slower when I remove bounds checks?

How to enable logging/tracing with Axum?

rust rust-axum rust-tracing