Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

No default toolchain configured after installing rustup

rust

What are the Rust types denoted with a single apostrophe?

rust

How do I convert from an integer to a string?

How do I stop iteration and return an error when Iterator::map returns a Result::Err?

rust rust-result

Split a module across several files

module rust

Idiomatic callbacks in Rust

callback rust

How to convert a String into a &'static str

rust

How do I use a macro across module files?

module rust rust-macros

How do I iterate over a range with a custom step?

rust

Is there a faster/shorter way to initialize variables in a Rust struct?

rust

When is it appropriate to use an associated type versus a generic type?

types rust idioms

How to lookup from and insert into a HashMap efficiently?

hashmap rust lookup

Cannot move out of borrowed content / cannot move out of behind a shared reference

How to use a local unpublished crate?

rust rust-crates

Default function arguments in Rust

Is it possible to use global variables in Rust?

global-variables rust

How can I build multiple binaries with Cargo?

rust rust-cargo

How does Rust's 128-bit integer `i128` work on a 64-bit system?

How do I convert a Vector of bytes (u8) to a string?

rust

What is this question mark operator about?

rust