Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

How to use a type (ty) within a macro to construct a struct instance in Rust?

macros rust

Convert boxed trait to mutable trait reference in Rust

rust

Why are the strings in my iterator being concatenated?

Where is the recommended place to put `use` declarations in Rust?

rust

Running websocket and http server on the same port (Rust, hyper)

websocket rust hyper

Rust interop with C++ std::string

c++ string rust interop

How do I use std::collections::BitSet in stable Rust?

rust

Is there a more idiomatic way to initialize an array with random numbers than a for loop?

rust

How to use the Pin struct with self-referential structures?

rust rust-pin

Is it possible to group items that need the same attribute? [duplicate]

rust

Why is calling a FnOnce closure a move?

Why can't I collect the Lines iterator into a vector of Strings?

string rust text-files

Why does Clippy suggests passing an Arc as a reference?

Issuing a warning at compile time?

Parsing a JSON into a Map in rust

rust serde-json

Capture all Regex matches into a vector

regex rust

Convert u8 array to base64 string in Rust

Is it safe to `Send` struct containing `Rc` if strong_count is 1 and weak_count is 0?

rust unsafe

Getting "Cannot deserialize the contract state" when calling Rust init function

rust nearprotocol

Rust: Vec<Vec<T>> into Vec<T>

rust