Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Rust can't find crate

rust rust-crates

How to solve "returns a value referencing data owned by the current function" error in Rust? [duplicate]

rust

Cannot borrow `x` as mutable more than once at a time

rust

Generating documentation in macros

macros rust

Should trait bounds be duplicated in struct and impl?

rust

How do I synchronously return a value calculated in an asynchronous Future in stable Rust?

rust future hyper

How to include files from same directory in a module using Cargo/Rust?

import module rust rust-cargo

Are there equivalents to slice::chunks/windows for iterators to loop over pairs, triplets etc?

iterator rust

How to convert from &[u8] to Vec<u8>?

rust

Is there any way to create a type alias for multiple traits?

rust

How can I perform parallel asynchronous HTTP GET requests with reqwest?

rust rust-tokio reqwest

What's the most idiomatic way of working with an Iterator of Results? [duplicate]

How do I declare a "static" field in a struct in Rust?

rust static

How can I add new methods to Iterator?

iterator rust

How to make a Rust mutable reference immutable?

rust

What is the Rust type keyword?

rust

Can libraries be distributed as a binary, so the end user cannot see the source code?

rust

In Rust, what is the purpose of a mod.rs file?

module rust

What is the difference between loop and while true?

loops rust

How to implement HashMap with two keys?

hashmap rust