Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in rust

Does Rust have an equivalent to Haskell's `sequence` function?

error-handling rust

How to iterate and extract values out of a for loop in Rust

for-loop rust

How to write Cyrillic text when using the debugging format?

rust cyrillic

Rust macro does not match passed types

macros rust

Rust debug library with GDB

Specifying lifetimes when using the factory pattern in Rust

rust

panic! does not stop an Iron server

rust iron

Does Rust box the individual items that are added to a vector?

vector rust heap-memory

How can I pass multiple elements from a collection into a function with one or more of the elements being mutable?

vector collections rust

What's the difference between atomic reference counting and automatic reference counting?

How can I use a cgmath::Matrix as a uniform parameter in glium?

rust glium

Why does .flat_map() with .chars() not work with std::io::Lines, but does with a vector of Strings?

iterator rust

Closures as a type in a Rust struct

generics rust closures

How to import everything from the crate root?

rust

Is there any safe way to ensure an arbitrary drop happens before some expensive computation?

multithreading rust raii

How to speed up UTF-8 string processing

string find rust

What is the Rust equivalent to C++'s virtual functions?

oop rust traits

What is the difference between '&self' and '&'a self'?

struct rust lifetime

Can I override a macro from the standard library with my own custom macro?

macros rust

How to take ownership of a value in flat_map

iterator rust