Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to represent shared mutable state?

rust

Is there a non-messy way to chain the results of functions that return Option values?

Do Rust lifetimes influence the semantics of the compiled program?

rust

Is String a valid Error type when it can be reported immediately in stdout? [closed]

error-handling rust

How do I decode a URL and get the query string as a HashMap?

rust query-string parse-url

Is it possible for a macro to turn an identifier lowercase? [duplicate]

macros rust

Sharing Mutable Variables Between Threads In Rust

Is it possible to send closures via channels?

rust

Concatenate array slices

rust

How do I resolve "implementation of serde::Deserialize is not general enough" with actix-web's Json type?

rust serde actix-web

How to tell what "features" are available per crate?

rust rust-cargo rust-crates

How to get a feature requirement tag in the documentation generated by `cargo doc`?

rust rustdoc

Can I efficiently return an object by value in Rust?

How to call a method that consumes self on a boxed trait object?

rust ownership-semantics

How to work with OpenSSL for Rust within a Windows development environment

How to convert Rust strings to UTF-16?

string rust utf-16

How do I convert a chrono `DateTime<UTC>` instance to `DateTime<Local>`?

datetime rust

Grouping structs with enums

rust

"cannot move a value of type FnOnce" when moving a boxed function

rust

Who borrowed a variable?