Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in 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?

Why can't I assign one dereference of a reference of a reference to another when the outer lifetimes differ?

rust lifetime

Why do I need both mod and use to bring a module to the scope?

rust

Why can I not return a reference from a closure?

rust closures lifetime

How do I write to a mutable slice from multiple threads at arbitrary indexes without using mutexes?

multithreading rust