Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to mutate iterator elements in Rust to reverse substrings

rust

How to give multiple function parameters the same type?

rust

How to make a struct field containing an Arc writable? [duplicate]

How do I perform iterator computations over iterators of Results without collecting to a temporary vector?

iterator rust

How to create a cyclic reference with Arc and Weak?

Get the number of elements stored inside an n-dimensional vector

vector rust

How to do things equal to nested `impl Trait`?

rust

Shared mutable state in Hyper

rust hyper rust-tokio

Is it possible to declare 2 static mutable variables depending on each other?

rust

Where are the shared and static libraries of the Rust standard library?

rust dynamic-linking

How to concatenate immutable vectors in one line?

vector rust concatenation

Can't compile project when using modules in multiple files: "imports can only refer to extern crate names passed with --extern"

module rust

How do I use async/await syntax with Tokio?

async-await rust rust-tokio

What are the technical differences between writing a Node.js module using Neon vs Wasm?

rust webassembly

Is it possible to write Haskell's flip function in Rust?

haskell rust

Cannot borrow as mutable in a loop when calling a closure that borrows as immutable?

Where should I save my config files in Rust

linux windows rust rust-cargo

returns a value referencing data owned by the current function [duplicate]

rust

What is the difference between Trait::<T> and <Trait<T>>?

generics rust

Is signed integer overflow in safe Rust in release mode considered as undefined behavior?